1 23 24 package org.continuent.sequoia.common.exceptions; 25 26 27 33 public class ControllerException extends SequoiaException 34 { 35 private static final long serialVersionUID = -1468081652034936198L; 36 37 40 public ControllerException() 41 { 42 } 43 44 49 public ControllerException(String message) 50 { 51 super(message); 52 } 53 54 59 public ControllerException(Throwable cause) 60 { 61 super(cause); 62 } 63 64 70 public ControllerException(String message, Throwable cause) 71 { 72 super(message, cause); 73 } 74 } 75 | Popular Tags |