1 package org.enhydra.shark.api.internal.toolagent; 2 import org.enhydra.shark.api.RootException; 3 4 5 public final class ApplicationNotDefined extends RootException { 6 7 public ApplicationNotDefined () { 8 super(); 9 } 11 12 public ApplicationNotDefined (String $reason) { 13 super($reason); 14 } 16 public ApplicationNotDefined(Throwable th) { 17 super(th); 18 } 19 20 21 public ApplicationNotDefined(String message, Throwable th) { 22 super(message, th); 23 } 24 } | Popular Tags |