Package rasj
Class RasRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- rasj.RasRuntimeException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
RasClientInternalException,RasIllegalULongValueException,RasIllegalUShortValueException,RasInvalidNameException,RasTypeNotSupportedException,RasTypeUnknownException
public abstract class RasRuntimeException extends java.lang.RuntimeExceptionPURPOSE: This abstract class is the superclass of all runtime exceptions in the rasj package except for
RasConnectionFailedException.- See Also:
RasException, Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedRasRuntimeException()Standard constructor.protectedRasRuntimeException(int num)Constructor getting the error number.protectedRasRuntimeException(int num, java.lang.String msg)Constructor getting error number and error message.protectedRasRuntimeException(java.lang.String msg)Constructor getting the error message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetErrNo()Method for retrieving the error number.java.lang.StringgetMessage()Method retrieving the error message.
-
-
-
Constructor Detail
-
RasRuntimeException
protected RasRuntimeException()
Standard constructor.
-
RasRuntimeException
protected RasRuntimeException(int num)
Constructor getting the error number.- Parameters:
num- the RasDaMan error number
-
RasRuntimeException
protected RasRuntimeException(java.lang.String msg)
Constructor getting the error message.- Parameters:
msg- the error message
-
RasRuntimeException
protected RasRuntimeException(int num, java.lang.String msg)Constructor getting error number and error message.- Parameters:
num- the RasDaMan error numbermsg- the error message
-
-