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