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