1 6 7 package net.sourceforge.cvsgrab; 8 9 16 public class DetectException extends Exception { 17 18 21 private static final long serialVersionUID = 2152735201329285610L; 22 23 26 public DetectException() { 27 super(); 28 } 29 30 34 public DetectException(String message) { 35 super(message); 36 } 37 38 42 public DetectException(Throwable cause) { 43 super(cause); 44 } 45 46 51 public DetectException(String message, Throwable cause) { 52 super(message, cause); 53 } 54 55 } 56 | Popular Tags |