Package com.stata.sfi
Class FrameException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.stata.sfi.SFIException
com.stata.sfi.FrameException
- All Implemented Interfaces:
Serializable
The FrameException class is used to indicate that an exceptional condition
has occurred with a
Frame
.- See Also:
-
Constructor Summary
ConstructorDescriptionFrameException
(int errorCode) Constructs an instance of FrameException with the specified error code.FrameException
(String message, int errorCode) Constructs an instance of FrameException with the specified detail message and error code. -
Method Summary
Methods inherited from class com.stata.sfi.SFIException
getErrorCode
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FrameException
public FrameException(int errorCode) Constructs an instance of FrameException with the specified error code.- Parameters:
errorCode
- The error code.
-
FrameException
Constructs an instance of FrameException with the specified detail message and error code.- Parameters:
message
- The detail message.errorCode
- The error code.
-