com.jme3.scene.plugins.blender.exceptions
Class BlenderFileException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.jme3.scene.plugins.blender.exceptions.BlenderFileException
All Implemented Interfaces:
java.io.Serializable

public class BlenderFileException
extends java.lang.Exception

This exception is thrown when blend file data is somehow invalid.

See Also:
Serialized Form

Constructor Summary
BlenderFileException()
          Constructor.
BlenderFileException(java.lang.String message)
          Constructor.
BlenderFileException(java.lang.String message, java.lang.Throwable throwable)
          Constructor.
BlenderFileException(java.lang.Throwable throwable)
          Constructor.
 
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

BlenderFileException

public BlenderFileException()
Constructor. Creates an exception with no description.


BlenderFileException

public BlenderFileException(java.lang.String message)
Constructor. Creates an exception containing the given message.

Parameters:
message - the message describing the problem that occured

BlenderFileException

public BlenderFileException(java.lang.Throwable throwable)
Constructor. Creates an exception that is based upon other thrown object. It contains the whole stacktrace then.

Parameters:
throwable - an exception/error that occured

BlenderFileException

public BlenderFileException(java.lang.String message,
                            java.lang.Throwable throwable)
Constructor. Creates an exception with both a message and stacktrace.

Parameters:
message - the message describing the problem that occured
throwable - an exception/error that occured