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
public class FrameException extends SFIException
The FrameException class is used to indicate that an exceptional condition has occurred with aFrame
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FrameException(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 Detail
-
FrameException
public FrameException(int errorCode)
Constructs an instance of FrameException with the specified error code.- Parameters:
errorCode
- The error code.
-
FrameException
public FrameException(String message, int errorCode)
Constructs an instance of FrameException with the specified detail message and error code.- Parameters:
message
- The detail message.errorCode
- The error code.
-
-