com.oziexplorer
Class OziException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by 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.
SourceForge.net

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.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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.