Package com.microej.soar
Class FeatureOptimizerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.microej.soar.FeatureOptimizerException
-
- All Implemented Interfaces:
Serializable
public class FeatureOptimizerException extends Exception
Exception thrown when an error is encountered duringFeatureOptimizer.build(java.io.InputStream, java.io.OutputStream)- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FeatureOptimizerException(int errorCode)FeatureOptimizerException(int errorCode, String message)FeatureOptimizerException(int errorCode, Throwable throwable)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetErrorCode()-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, toString
-
-
-
-
Constructor Detail
-
FeatureOptimizerException
public FeatureOptimizerException(int errorCode)
- Parameters:
errorCode- an implementation specific error code. Please consult associated documentation.
-
FeatureOptimizerException
public FeatureOptimizerException(int errorCode, String message)- Parameters:
errorCode- an implementation specific error code. Please consult associated documentation.message- a string message related to the error code.
-
FeatureOptimizerException
public FeatureOptimizerException(int errorCode, Throwable throwable)- Parameters:
errorCode- an implementation specific error code. Please consult associated documentation.throwable- an underlying error related to the error code.
-
-