1 24 25 package org.objectweb.cjdbc.common.exceptions; 26 27 28 34 public class ShutdownException extends CJDBCException 35 { 36 private static final long serialVersionUID = 1421907016443553749L; 37 38 41 public ShutdownException() 42 { 43 } 44 45 50 public ShutdownException(String message) 51 { 52 super(message); 53 } 54 55 60 public ShutdownException(Throwable cause) 61 { 62 super(cause); 63 } 64 65 71 public ShutdownException(String message, Throwable cause) 72 { 73 super(message, cause); 74 } 75 } 76 | Popular Tags |