public abstract class SoySyntaxException extends RuntimeException
| Modifier | Constructor and Description |
|---|---|
protected |
SoySyntaxException() |
|
SoySyntaxException(String message)
Deprecated.
Do not use outside of Soy code (treat as superpackage-private).
|
protected |
SoySyntaxException(String message,
Throwable cause)
Important: Do not use outside of Soy code (treat as superpackage-private).
|
protected |
SoySyntaxException(Throwable cause)
Important: Do not use outside of Soy code (treat as superpackage-private).
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringprotected SoySyntaxException()
@Deprecated public SoySyntaxException(String message)
Important: Do not use outside of Soy code (treat as superpackage-private).
message - A detailed description of what the syntax error is.protected SoySyntaxException(String message, Throwable cause)
Important: Do not use outside of Soy code (treat as superpackage-private).
message - A detailed description of what the syntax error is.cause - The Throwable underlying this syntax error.protected SoySyntaxException(Throwable cause)
Important: Do not use outside of Soy code (treat as superpackage-private).
Note: For this constructor, the message will be set to the cause's message.
cause - The Throwable underlying this syntax error.