1 18 19 package org.apache.beehive.netui.tools.testrecorder.shared.config; 20 21 26 public class RuntimeConfigException extends RuntimeException { 27 28 public RuntimeConfigException() { 29 super(); 30 } 31 32 public RuntimeConfigException( String message ) { 33 super( message ); 34 } 35 36 public RuntimeConfigException( String message, Throwable cause ) { 37 super( message, cause ); 38 } 39 40 public RuntimeConfigException( Throwable cause ) { 41 super( cause ); 42 } 43 } 44 | Popular Tags |