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

Quick Search    Search Deep

Source code: org/acs/damsel/srvr/db/TagNameNotFoundException.java


1   package org.acs.damsel.srvr.db;
2   
3   /**
4    * <p>Title: TagNameNotFoundException</p>
5    * <p>Description: Exception is thrown by the table class when someone tries
6    * to access a tag that is not included in the Table instance.</p>
7    * @version 1.0
8    */
9   public class TagNameNotFoundException extends Exception {
10    public TagNameNotFoundException(String str) {
11      super (str);
12    }
13  
14  }