1 package org.enhydra.shark.api.client.wfmodel; 2 import org.enhydra.shark.api.RootException; 3 4 5 9 public final class CannotAcceptSuspended extends RootException 10 { 11 12 public CannotAcceptSuspended () 13 { 14 super(); 15 } 17 18 public CannotAcceptSuspended (String $reason) 19 { 20 super($reason); 21 } 23 public CannotAcceptSuspended(Throwable th) { 24 super(th); 25 } 26 27 public CannotAcceptSuspended(String message, Throwable th) { 28 super(message, th); 29 } 30 31 } | Popular Tags |