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