src/main/resources/xelfi/templates/patterns/Exception.template
author Jaroslav Tulach <jaroslav.tulach@xelfi.cz>
Tue, 17 Jan 2017 21:11:27 +0100
changeset 8 09cacfcd32fd
parent 0 src/main/java/xelfi/templates/patterns/Exception.template@189280700bc7
permissions -rw-r--r--
Moving non-java files into resources directory
     1 /**
     2 *
     3 */
     4 
     5 package XYZ;
     6 
     7 /**
     8 *
     9 * @author
    10 * @version
    11 */
    12 public class ABC extends Exception {
    13 
    14   /** Creates new exception ABC
    15   */
    16   public ABC () {
    17     super ();
    18   }
    19 
    20   /** Creates new exception ABC with text specified
    21   * string s.
    22   * @param s the text describing the exception
    23   */
    24   public ABC (String s) {
    25     super (s);
    26   }
    27 }
    28