| Home >> All >> org >> acs >> damsel >> srvr >> [ schema Javadoc ] |
Source code: org/acs/damsel/srvr/schema/SchemaException.java
1 package org.acs.damsel.srvr.schema; 2 3 /** 4 * <p>Title: SchemarException</p> 5 * <p>Description: Exception thrown by the Schema class when problems with a 6 * Schema object are encountered.</p> 7 * @version 1.0 8 */ 9 public class SchemaException extends Exception { 10 public SchemaException(String msg) { 11 super(msg); 12 } 13 }