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

Quick Search    Search Deep

Source code: javax/ide/model/java/source/write/TreeTransactionException.java


1   /*
2    * @(#)TreeTransactionException.java
3    */
4   
5   package javax.ide.model.java.source.write;
6   
7   /**
8    * 
9    *
10   * @author Andy Yu
11   */
12  public class TreeTransactionException
13    extends IllegalStateException
14  {
15    public TreeTransactionException()
16    {
17      super();
18    }
19    
20    public TreeTransactionException(String message)
21    {
22      super(message);
23    }
24  }