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