1 package org.dfdaemon.il2.core; 2 3 /** 4 * @author aka50 5 */ 6 public class Il2DaemonException extends RuntimeException { 7 8 /** 9 * Constructor Il2DaemonException creates a new Il2DaemonException instance. 10 */ 11 public Il2DaemonException() { 12 } 13 14 /** 15 * Constructor Il2DaemonException creates a new Il2DaemonException instance. 16 * 17 * @param message of type String 18 */ 19 public Il2DaemonException(String message) { 20 super(message); 21 } 22 23 /** 24 * Constructor Il2DaemonException creates a new Il2DaemonException instance. 25 * 26 * @param message of type String 27 * @param cause of type Throwable 28 */ 29 public Il2DaemonException(String message, Throwable cause) { 30 super(message, cause); 31 } 32 33 /** 34 * Constructor Il2DaemonException creates a new Il2DaemonException instance. 35 * 36 * @param cause of type Throwable 37 */ 38 public Il2DaemonException(Throwable cause) { 39 super(cause); 40 } 41 }