1 25 26 package org.objectweb.jonas_lib.genclientstub; 27 28 import org.objectweb.jonas_lib.genbase.GenBaseException; 29 30 34 public class ClientStubGenException extends GenBaseException { 35 36 39 public ClientStubGenException() { 40 super(); 41 } 42 43 47 public ClientStubGenException(String msg) { 48 super(msg); 49 } 50 51 55 public ClientStubGenException(Exception inner) { 56 super(inner); 57 } 58 59 64 public ClientStubGenException(String msg, Exception inner) { 65 super(msg, inner); 66 } 67 } | Popular Tags |