File tree Expand file tree Collapse file tree
src/main/java/io/github/eocqrs/kafka/act Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 }
You can’t perform that action at this time.
0 commit comments