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