mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 14:22:19 +00:00
af16ba23cd
* move feature under experimental * replace ProviderFor with Provides * add doc material (to be completed) * add author
16 lines
343 B
Plaintext
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);
|
|
}
|
|
} |