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