1 package org.enhydra.shark.api.client.wfbase; 2 3 4 import org.enhydra.shark.api.*; 5 6 7 14 public final class NameMismatch extends RootException 15 { 16 17 public NameMismatch () 18 { 19 super(); 20 } 22 23 public NameMismatch (String $reason) 24 { 25 super($reason); 26 } 28 public NameMismatch(Throwable th) { 29 super(th); 30 } 31 32 public NameMismatch(String message, Throwable th) { 33 super(th); 34 } 35 36 } | Popular Tags |