net.vee.btech.saikoro
Class SaikoroException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--net.vee.lang.NestedException
                    |
                    +--net.vee.btech.saikoro.SaikoroException
All Implemented Interfaces:
java.io.Serializable

public class SaikoroException
extends net.vee.lang.NestedException

A generic Saikoro exception.

See Also:
Serialized Form

Fields inherited from class net.vee.lang.NestedException
mCause
 
Constructor Summary
SaikoroException()
          Constructs a new SaikoroException.
SaikoroException(java.lang.String aMsg)
          Constructs a new SaikoroException.
SaikoroException(java.lang.String aMsg, java.lang.Throwable aCause)
          Constructs a new SaikoroException.
SaikoroException(java.lang.Throwable aCause)
          Constructs a new SaikoroException.
 
Methods inherited from class net.vee.lang.NestedException
getCause, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SaikoroException

public SaikoroException()
Constructs a new SaikoroException.

SaikoroException

public SaikoroException(java.lang.String aMsg)
Constructs a new SaikoroException.
Parameters:
aMsg - a message describing the error.

SaikoroException

public SaikoroException(java.lang.Throwable aCause)
Constructs a new SaikoroException.
Parameters:
aCause - the error that caused this exception.

SaikoroException

public SaikoroException(java.lang.String aMsg,
                        java.lang.Throwable aCause)
Constructs a new SaikoroException.
Parameters:
aMsg - a message describing the error.
aCause - the error that caused this exception.