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

Quick Search    Search Deep

Source code: javax/ide/property/InvalidPropertyException.java


1   package javax.ide.property;
2   
3   /**
4    * This exception should be thrown by {@link PropertyPage#onExit} 
5    * implementors when the user enters an invalid property value.
6    */
7   public class InvalidPropertyException extends Exception
8   {
9     /**
10     * Constructor.
11     *
12     * @param msg a short message indicating the problem.
13     */
14    public InvalidPropertyException( String msg )
15    {
16      super( msg );
17    }
18  }