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