1 package org.apache.ojb.otm.states; 2 3 17 18 import org.apache.ojb.otm.core.OTMGenericException; 19 20 25 public class IllegalObjectStateException extends OTMGenericException 26 { 27 28 31 public IllegalObjectStateException() 32 { 33 super(); 34 } 35 36 40 public IllegalObjectStateException(String msg) 41 { 42 super(msg); 43 } 44 45 49 public IllegalObjectStateException(Throwable cause) 50 { 51 super(cause); 52 } 53 54 59 public IllegalObjectStateException(String msg, Throwable cause) 60 { 61 super(msg, cause); 62 } 63 64 } 65 | Popular Tags |