1 package ch.braincell.stickbackup.config; 2 3 4 /*** 5 * Will be thrown if something goes wrong in configuration 6 * (e.g. instance can't be initialized properly). 7 */ 8 public class ConfigException extends RuntimeException { 9 10 /*** 11 * generated serial version UID. 12 */ 13 private static final long serialVersionUID = -3611099772589823462L; 14 15 /*** 16 * Creates the exception. 17 * @param message Message to tell. 18 * @param ex Exception thrown. 19 */ 20 public ConfigException(String message, Throwable ex) { 21 super(message, ex); 22 } 23 }