src/main/resources/xelfi/templates/patterns/Exception.template
changeset 8 09cacfcd32fd
parent 0 189280700bc7
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/main/resources/xelfi/templates/patterns/Exception.template	Tue Jan 17 21:11:27 2017 +0100
     1.3 @@ -0,0 +1,28 @@
     1.4 +/**
     1.5 +*
     1.6 +*/
     1.7 +
     1.8 +package XYZ;
     1.9 +
    1.10 +/**
    1.11 +*
    1.12 +* @author
    1.13 +* @version
    1.14 +*/
    1.15 +public class ABC extends Exception {
    1.16 +
    1.17 +  /** Creates new exception ABC
    1.18 +  */
    1.19 +  public ABC () {
    1.20 +    super ();
    1.21 +  }
    1.22 +
    1.23 +  /** Creates new exception ABC with text specified
    1.24 +  * string s.
    1.25 +  * @param s the text describing the exception
    1.26 +  */
    1.27 +  public ABC (String s) {
    1.28 +    super (s);
    1.29 +  }
    1.30 +}
    1.31 +