org.molwind.view
Class TileException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.molwind.view.TileException
All Implemented Interfaces:
java.io.Serializable

public class TileException
extends java.lang.Exception

TileException represents an exception generated by tile operations.

Version:
1.0
Author:
Oliver Karch
See Also:
Serialized Form

Constructor Summary
TileException()
          Constructs a new exception with null as its detail message.
TileException(java.lang.String message)
          Constructs a new exception with the specified detail message.
TileException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new exception with the specified detail message and cause.
TileException(java.lang.Throwable cause)
          Constructs a new exception with the specified cause and a detail message of cause == null ? null : cause.toString() (which typically contains the class and detail message of cause).
 
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

TileException

public TileException()
Constructs a new exception with null as its detail message.


TileException

public TileException(java.lang.String message)
Constructs a new exception with the specified detail message.

Parameters:
message - the detail message, saved for later retrieval by the Throwable.getMessage() method

TileException

public TileException(java.lang.String message,
                     java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.

Parameters:
message - the detail message, saved for later retrieval by the Throwable.getMessage() method
cause - the cause, saved for later retrieval by the Throwable.getCause() method (a null value is permitted, and indicates that the cause is nonexistent or unknown)

TileException

public TileException(java.lang.Throwable cause)
Constructs a new exception with the specified cause and a detail message of cause == null ? null : cause.toString() (which typically contains the class and detail message of cause).

Parameters:
cause - the cause, saved for later retrieval by the Throwable.getCause() method (a null value is permitted, and indicates that the cause is nonexistent or unknown)


Copyright © 2008-2010. All Rights Reserved.