1 25 package org.objectweb.jonas_rar.raconfig; 26 27 28 33 public class RAConfigException extends Exception { 34 35 38 public RAConfigException(String message) { 39 super(message); 40 } 41 42 45 public RAConfigException(Throwable cause) { 46 super(cause); 47 } 48 49 53 public RAConfigException(String message, Throwable cause) { 54 super(message, cause); 55 } 56 57 } 58 | Popular Tags |