1 16 17 21 22 package javax.jdo; 23 24 29 public class JDOUnsupportedOptionException extends JDOUserException { 30 31 34 public JDOUnsupportedOptionException() { 35 } 36 37 38 42 public JDOUnsupportedOptionException(String msg) { 43 super(msg); 44 } 45 46 52 public JDOUnsupportedOptionException(String msg, Throwable [] nested) { 53 super(msg, nested); 54 } 55 56 62 public JDOUnsupportedOptionException(String msg, Throwable nested) { 63 super(msg, nested); 64 } 65 } 66 67 | Popular Tags |