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