Package com.jme3.material.plugins
Class MatParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.jme3.material.plugins.MatParseException
- All Implemented Interfaces:
- Serializable
Custom Exception to report a j3md Material definition file parsing error.
 This exception reports the line number where the error occurred.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionMatParseException(String text, Statement statement) creates a MatParseExceptionMatParseException(String text, Statement statement, Throwable cause) creates a MatParseExceptionMatParseException(String expected, String got, Statement statement) creates a MatParseExceptionMatParseException(String expected, String got, Statement statement, Throwable cause) creates a MatParseException
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
MatParseExceptioncreates a MatParseException- Parameters:
- expected- the expected value
- got- the actual value
- statement- the read statement
 
- 
MatParseExceptioncreates a MatParseException- Parameters:
- text- the error message
- statement- the statement where the error occur
 
- 
MatParseExceptioncreates a MatParseException- Parameters:
- expected- the expected value
- got- the actual value
- statement- the read statement
- cause- the embed exception that occurred
 
- 
MatParseExceptioncreates a MatParseException- Parameters:
- text- the error message
- statement- the statement where the error occur
- cause- the embed exception that occurred
 
 
-