View Javadoc
1   package org.jastacry;
2   
3   /**
4    * My very own JaStyCry exception class.
5    * @author kkretsch
6    */
7   public class JastacryException extends Exception
8   {
9   
10      /**
11       * Calculated serial UUID.
12       */
13      private static final long serialVersionUID = 5001556363057011159L;
14  
15      /**
16       * Main constructor with string parameter.
17       * @param msg The message
18       */
19      public JastacryException(final String msg)
20      {
21          super(msg);
22      }
23  }