com.oziexplorer
Class OziException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.oziexplorer.OziException
- All Implemented Interfaces:
- Serializable
public class OziException
- extends Exception
OziExplorer exception type.
Copyright 2011 Alan Burlison, . All rights reserved.
Use is subject to license terms, see
LICENSE.txt.
- See Also:
- Serialized Form
Constructor Summary |
OziException()
Creates a new instance of OziException without any details. |
OziException(String msg)
Constructs an instance of OziException with the specified
detail message. |
OziException(String format,
Object... args)
Constructs an instance of OziException with the specified
formatted detail message. |
OziException(String msg,
Throwable cause)
Constructs an instance of OziException with the specified
detail message and nested exception. |
OziException(Throwable cause)
Creates a new instance of OziException with the specified
nested exception. |
OziException(Throwable cause,
String format,
Object... args)
Constructs an instance of OziException with the specified
nested exception and formatted detail message. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
OziException
public OziException()
- Creates a new instance of
OziException
without any details.
OziException
public OziException(Throwable cause)
- Creates a new instance of
OziException
with the specified
nested exception.
- Parameters:
cause
- the nested exception.
OziException
public OziException(String msg)
- Constructs an instance of
OziException
with the specified
detail message.
- Parameters:
msg
- the detail message.
OziException
public OziException(String msg,
Throwable cause)
- Constructs an instance of
OziException
with the specified
detail message and nested exception.
- Parameters:
msg
- the detail message.cause
- the nested exception.
OziException
public OziException(String format,
Object... args)
- Constructs an instance of
OziException
with the specified
formatted detail message.
- Parameters:
format
- the string format, see String.format(java.lang.String, java.lang.Object...)
.args
- the format string arguments.
OziException
public OziException(Throwable cause,
String format,
Object... args)
- Constructs an instance of
OziException
with the specified
nested exception and formatted detail message.
- Parameters:
cause
- the nested exception.format
- the string format, see String.format(java.lang.String, java.lang.Object...)
.args
- the format string arguments.