1 7 8 9 package javax.naming.directory; 10 11 import javax.naming.NamingException ; 12 13 37 public class SchemaViolationException extends NamingException { 38 42 public SchemaViolationException() { 43 super(); 44 } 45 46 52 public SchemaViolationException(String explanation) { 53 super(explanation); 54 } 55 56 59 private static final long serialVersionUID = -3041762429525049663L; 60 } 61 | Popular Tags |