Package com.mks.api.response
Class InternalException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.mks.api.response.APIException
-
- com.mks.api.response.InternalException
-
- All Implemented Interfaces:
FieldContainer
,java.io.Serializable
- Direct Known Subclasses:
UnknownException
public class InternalException extends APIException
Exception thrown due to an internal error while executing the command.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.mks.api.response.APIException
cause, fields, message, response, showStackTrace
-
-
Constructor Summary
Constructors Constructor Description InternalException()
Default constructor.InternalException(java.lang.String msg)
Default constructor.InternalException(java.lang.Throwable t)
Default constructor.
-
Method Summary
-
Methods inherited from class com.mks.api.response.APIException
add, addField, contains, getExceptionId, getField, getField, getFieldListSize, getFields, getMessage, getResponse, printStackTrace, printStackTrace, printStackTrace, setMessage, setResponse, setShowStackTrace
-
-
-
-
Constructor Detail
-
InternalException
public InternalException()
Default constructor.
-
InternalException
public InternalException(java.lang.String msg)
Default constructor.- Parameters:
msg
- The exception message.
-
InternalException
public InternalException(java.lang.Throwable t)
Default constructor.- Parameters:
t
- The linkedThrowable
object.
-
-