Package jade.lang.acl
Class ACLCodec.CodecException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- jade.lang.acl.ACLCodec.CodecException
-
- All Implemented Interfaces:
Serializable
- Enclosing interface:
- ACLCodec
public static class ACLCodec.CodecException extends Exception
This exception is thrown when some problem occurs in the concrete parsing subsystem accessed through this interface. If an exception is thrown by the underlying parser, it is wrapped with aCodec.CodecException, which is then rethrown.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CodecException(String msg, Throwable t)Construct a newCodecException
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ThrowablegetNested()Reads the exception wrapped by this object.voidprintStackTrace()Print the stack trace for this exception on the standard output stream.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
getNested
public Throwable getNested()
Reads the exception wrapped by this object.- Returns:
- the
Throwableobject that is the exception thrown by the concrete parsing subsystem.
-
printStackTrace
public void printStackTrace()
Print the stack trace for this exception on the standard output stream.- Overrides:
printStackTracein classThrowable
-
-