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

Quick Search    Search Deep

Source code: com/flexstor/common/util/PropertyMapperException.java


1   /*
2    * PropertyMapperException.java
3    *
4    * Copyright $Date: 2003/08/11 02:22:30 $ FLEXSTOR.net Inc.
5    *
6    * This work is licensed for use and distribution under license terms found at
7    * http://www.flexstor.org/license.html
8    *
9    */
10  
11  package com.flexstor.common.util;
12  
13  /**
14   * PropertyMapperException provides functionality to throw exceptions
15   * from PropertyMapper.
16   *
17   * @author  Jose Hernandez
18   * @version 2.2
19   */
20  public final class PropertyMapperException
21     extends java.lang.Exception
22  {
23     PropertyMapperException( String sMsg )
24     {
25        super( sMsg );
26     }
27  }