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