1 package org.apache.ojb.broker.util.sequence; 2 3 17 18 import org.apache.ojb.broker.OJBException; 19 20 27 public class SequenceManagerException extends OJBException 28 { 29 public SequenceManagerException(String msg) 30 { 31 super(msg); 32 } 33 34 public SequenceManagerException(Throwable cause) 35 { 36 super(cause); 37 } 38 39 public SequenceManagerException(String msg, Throwable cause) 40 { 41 super(msg, cause); 42 } 43 } 44 | Popular Tags |