You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by we...@apache.org on 2004/02/04 22:06:05 UTC

cvs commit: jakarta-jetspeed-2/plugin/src/java/org/apache/jetspeed/services/plugin PluginRuntimeException.java

weaver      2004/02/04 13:06:05

  Added:       plugin/src/java/org/apache/jetspeed/services/plugin
                        PluginRuntimeException.java
  Log:
  added a PluginRuntimeException
  
  Revision  Changes    Path
  1.1                  jakarta-jetspeed-2/plugin/src/java/org/apache/jetspeed/services/plugin/PluginRuntimeException.java
  
  Index: PluginRuntimeException.java
  ===================================================================
  /**
   * Created on Jan 29, 2004
   *
   * 
   * @author
   */
  package org.apache.jetspeed.services.plugin;
  
  import org.apache.commons.lang.exception.NestableRuntimeException;
  
  /**
   * <p>
   * PluginRuntimeException
   * </p>
  
   * @author <a href="mailto:weaver@apache.org">Scott T. Weaver</a>
   * @version $Id: PluginRuntimeException.java,v 1.1 2004/02/04 21:06:05 weaver Exp $
   *
   */
  public class PluginRuntimeException extends NestableRuntimeException
  {
  
      /**
       * 
       */
      public PluginRuntimeException()
      {
          super();
          // TODO Auto-generated constructor stub
      }
  
      /**
       * @param arg0
       */
      public PluginRuntimeException(String arg0)
      {
          super(arg0);
          // TODO Auto-generated constructor stub
      }
  
      /**
       * @param arg0
       */
      public PluginRuntimeException(Throwable arg0)
      {
          super(arg0);
          // TODO Auto-generated constructor stub
      }
  
      /**
       * @param arg0
       * @param arg1
       */
      public PluginRuntimeException(String arg0, Throwable arg1)
      {
          super(arg0, arg1);
          // TODO Auto-generated constructor stub
      }
  
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-dev-help@jakarta.apache.org