Files
lombok/website/usageExamples/StandardExceptionExample_post.jpage
T
ttzn af16ba23cd @StandardException feature working draft
* move feature under experimental
* replace ProviderFor with Provides
* add doc material (to be completed)
* add author
2021-03-24 23:52:08 +01:00

16 lines
343 B
Plaintext

public class ExampleException extends Exception {
public ExampleException() {
}
public ExampleException(String message) {
super(message);
}
public ExampleException(Throwable cause) {
super(cause);
}
public ExampleException(String message, Throwable cause) {
super(message, cause);
}
}