Files
lombok/website/usageExamples/StandardExceptionExample_post.jpage
Reinier Zwitserloot 415e303ac2 [pr 2702] finishing the @StandardException feature.
* rewritten how it works a bit: Now compatible with parent exceptions that don't have the Throwable variants.
* rewritten how it works a bit: You can now provide the full constructor only; the rest will forward to it.
* fixing up style.
* rewrite the docs.
2021-04-16 06:40:35 +02:00

18 lines
460 B
Plaintext

public class ExampleException extends Exception {
public ExampleException() {
this(null, null);
}
public ExampleException(String message) {
this(message, null);
}
public ExampleException(Throwable cause) {
this(cause != null ? cause.getMessage() : null, cause);
}
public ExampleException(String message, Throwable cause) {
super(message);
if (cause != null) super.initCause(cause);
}
}