Skip to content

Commit 7dc1cd9

Browse files
author
h1alexbel
committed
serial, docs
1 parent 2a9f825 commit 7dc1cd9

1 file changed

Lines changed: 21 additions & 1 deletion

File tree

src/main/java/io/github/eocqrs/kafka/act/ShutdownHookException.java

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,39 @@
2828
* @author Aliaksei Bialiauski (abialiauski.dev@gmail.com)
2929
* @since 0.2.5
3030
*/
31-
public class ShutdownHookException extends RuntimeException {
31+
@SuppressWarnings("serial")
32+
public final class ShutdownHookException extends RuntimeException {
3233

34+
/**
35+
* Empty ctor.
36+
*/
3337
public ShutdownHookException() {
3438
}
3539

40+
/**
41+
* Ctor.
42+
*
43+
* @param message Message
44+
*/
3645
public ShutdownHookException(final String message) {
3746
super(message);
3847
}
3948

49+
/**
50+
* Ctor.
51+
*
52+
* @param message Message
53+
* @param cause Cause
54+
*/
4055
public ShutdownHookException(final String message, final Throwable cause) {
4156
super(message, cause);
4257
}
4358

59+
/**
60+
* Ctor.
61+
*
62+
* @param cause Cause
63+
*/
4464
public ShutdownHookException(final Throwable cause) {
4565
super(cause);
4666
}

0 commit comments

Comments
 (0)