Class com.ibm.ivj.util.base.IvjException
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----com.ibm.ivj.util.base.IvjException
- public class IvjException
- extends Exception
IBM VisualAge for Java exception. The exception will always contain a message
and may contain additional error detail (as Strings)
Constructor Index
- IvjException(String)
- Construct an IvjException with an array of errors strings.
- IvjException(String, String[])
- Construct an IvjException with an array of errors strings.
Method Index
- getErrors()
- Return the error messages that caused the exception to be thrown.
Constructors
IvjException
public IvjException(String message)
- Construct an IvjException with an array of errors strings.
- Parameters:
- message - java.lang.String error message
IvjException
public IvjException(String message,
String errors[])
- Construct an IvjException with an array of errors strings.
- Parameters:
- message - java.lang.String error message
- errors - java.lang.String[] error details
Methods
getErrors
public String[] getErrors()
- Return the error messages that caused the exception to be thrown.
- Returns:
- java.lang.String[] The error messages.
