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