1 5 package com.opensymphony.workflow; 6 7 8 15 public class QueryNotSupportedException extends InternalWorkflowException { 16 18 public QueryNotSupportedException() { 19 } 20 21 public QueryNotSupportedException(String message) { 22 super(message); 23 } 24 25 public QueryNotSupportedException(Exception cause) { 26 super(cause); 27 } 28 29 public QueryNotSupportedException(String message, Exception cause) { 30 super(message, cause); 31 } 32 } 33 | Popular Tags |