1 package org.enhydra.shark.api.client.wfservice; 2 import org.enhydra.shark.api.RootException; 3 4 8 public final class PackageInUse extends RootException { 9 10 public PackageInUse () { 11 super(); 12 } 14 15 public PackageInUse (String $reason) { 16 super($reason); 17 } 19 public PackageInUse(Throwable th) { 20 super(th); 21 } 22 23 public PackageInUse(String message, Throwable th) { 24 super(message, th); 25 } 26 27 } | Popular Tags |