core
Class GameLoadException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by core.GameLoadException
All Implemented Interfaces:
Serializable

public class GameLoadException
extends Exception

An exception with a user readable error message about what went wrong with loading a file.

See Also:
Serialized Form

Field Summary
static long serialVersionUID
           
 
Constructor Summary
GameLoadException(String s)
          Creates an exception with a user readable error message about what went wrong with loading a file.
GameLoadException(String s, Throwable t)
          Creates an exception with a user readable error message about what went wrong with loading a file, and keeps the throwable that lead to the exception.
 
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
 

Field Detail

serialVersionUID

public static final long serialVersionUID
See Also:
Constant Field Values
Constructor Detail

GameLoadException

public GameLoadException(String s)
Creates an exception with a user readable error message about what went wrong with loading a file.

Parameters:
s - user readable error message

GameLoadException

public GameLoadException(String s,
                         Throwable t)
Creates an exception with a user readable error message about what went wrong with loading a file, and keeps the throwable that lead to the exception.

Parameters:
s - user readable error message
t - exception that caused this,