1 package net.sf.cantina.exceptions; 2 3 /*** 4 * Base class for all exceptions. 5 * @author Stephane JAIS 6 * 7 */ 8 9 public class CantinaException extends java.lang.Exception 10 { 11 public CantinaException () { super(); } 12 public CantinaException (String s) { super(s); } 13 public CantinaException (String s, Exception e) { super(s,e); } 14 }