Package rasj
Class RasException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- rasj.RasException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
RasDimensionMismatchException,RasIndexOutOfBoundsException,RasResultIsNoCellException,RasResultIsNoIntervalException,RasStreamInputOverflowException,RasTypeInvalidException
public class RasException extends java.lang.ExceptionPURPOSE: This is the superclass of all exceptions in the rasj package, except for
RasQueryExecutionFailedException.- See Also:
RasRuntimeException, Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedRasException()Standard constructor.protectedRasException(int num)Constructor getting the error number.protectedRasException(int num, java.lang.String msg)Constructor getting error number and error message.protectedRasException(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
-
RasException
protected RasException()
Standard constructor.
-
RasException
protected RasException(int num)
Constructor getting the error number.- Parameters:
num- the RasDaMan error number
-
RasException
protected RasException(java.lang.String msg)
Constructor getting the error message.- Parameters:
msg- the error message
-
RasException
protected RasException(int num, java.lang.String msg)Constructor getting error number and error message.- Parameters:
num- the RasDaMan error numbermsg- the error message
-
-