Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/acs/damsel/srvr/schema/ControlledVocabularyException.java


1   package org.acs.damsel.srvr.schema;
2   
3   /**
4    * <p>Title: ControlledVocabularyException</p>
5    * <p>Description: Exception thrown by methods in the MetaDataTag class when
6    * there is an error while getting, setting, or deleting the controlled
7    * vocabulary associated with a MetaDataTag.</p>
8    * @version 1.0
9    */
10  public class ControlledVocabularyException extends Exception {
11    public ControlledVocabularyException(String message) {
12      super(message);
13    }
14  }