InvalidState.java :  » Workflow-Engines » shark » org » enhydra » shark » api » client » wfmodel » Java Open Source

Java Open Source » Workflow Engines » shark 
shark » org » enhydra » shark » api » client » wfmodel » InvalidState.java
package org.enhydra.shark.api.client.wfmodel;
import org.enhydra.shark.api.RootException;

/**
 * Is raised by an attempt to change the state of a WfExecutionObject to
 * a state that is not defined for that object.
 */
public final class InvalidState extends RootException
{

   public InvalidState ()
   {
      super();
   } // ctor


   public InvalidState (String $reason)
   {
      super($reason);
   } // ctor

   public InvalidState(Throwable th) {
      super(th);
   }

   public InvalidState(String message, Throwable th) {
      super(message, th);
   }

} // class InvalidState
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.