public class ProguardCoreException
extends java.lang.RuntimeException
Modifier and Type | Class and Description |
---|---|
static class |
ProguardCoreException.Builder
Builder to construct ProguardCoreException objects.
|
Constructor and Description |
---|
ProguardCoreException(int componentErrorId,
java.lang.String message,
java.lang.Object... errorParameters)
Overload of
ProguardCoreException(int, Throwable, String,
Object...) } without throwable. |
ProguardCoreException(int componentErrorId,
java.lang.Throwable cause,
java.lang.String message,
java.lang.Object... errorParameters)
Main constructor, all other constructors need to call this one in order to do common things
(formating string for instance). Same as
ProguardCoreException(int, String, Object...) but takes a Throwable
argument to initialize the cause. |
Modifier and Type | Method and Description |
---|---|
int |
getComponentErrorId()
Returns the id for the error (exception).
|
java.lang.Object[] |
getErrorParameters()
Returns the list of information related to this error.
|
public ProguardCoreException(int componentErrorId, java.lang.String message, java.lang.Object... errorParameters)
ProguardCoreException(int, Throwable, String,
Object...)
} without throwable.public ProguardCoreException(int componentErrorId, java.lang.Throwable cause, java.lang.String message, java.lang.Object... errorParameters)
ProguardCoreException(int, String, Object...)
but takes a Throwable
argument to initialize the cause.