1 25 26 package org.objectweb.jonas_lib.genbase; 27 28 32 public class GenBaseException extends Exception { 33 34 37 public GenBaseException() { 38 super(); 39 } 40 41 45 public GenBaseException(String msg) { 46 super(msg); 47 } 48 49 53 public GenBaseException(Exception inner) { 54 super(inner); 55 } 56 57 62 public GenBaseException(String msg, Exception inner) { 63 super(msg, inner); 64 } 65 } | Popular Tags |