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