Package org.eclipse.aether.transform
Class TransformException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eclipse.aether.transform.TransformException
- All Implemented Interfaces:
- Serializable
Deprecated.
Without any direct replacement for now. This API is OOM-prone, and also lacks a lot of context about
 transforming.
Thrown when transformation failed.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionDeprecated.Creates a new exception with default detail message.TransformException(String message) Deprecated.Creates a new exception with the specified detail message.TransformException(String message, Throwable cause) Deprecated.Creates a new exception with the specified detail message and cause.TransformException(Throwable cause) Deprecated.Creates a new exception with the specified cause.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
TransformExceptionpublic TransformException()Deprecated.Creates a new exception with default detail message.
- 
TransformExceptionDeprecated.Creates a new exception with the specified detail message.- Parameters:
- message- The detail message, may be- null.
 
- 
TransformExceptionDeprecated.Creates a new exception with the specified cause.- Parameters:
- cause- The exception that caused this one, may be- null.
 
- 
TransformExceptionDeprecated.Creates a new exception with the specified detail message and cause.- Parameters:
- message- The detail message, may be- null.
- cause- The exception that caused this one, may be- null.
 
 
-