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/09/03 21:41:59 UTC

cvs commit: jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/page/document NodeNotFoundException.java DocumentNotFoundException.java

weaver      2004/09/03 12:41:59

  Modified:    jetspeed-api/src/java/org/apache/jetspeed/page/document
                        DocumentNotFoundException.java
  Added:       jetspeed-api/src/java/org/apache/jetspeed/page/document
                        NodeNotFoundException.java
  Log:
  switched to NodeNotFoundException
  
  Revision  Changes    Path
  1.2       +2 -2      jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/page/document/DocumentNotFoundException.java
  
  Index: DocumentNotFoundException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/page/document/DocumentNotFoundException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DocumentNotFoundException.java	3 Sep 2004 13:24:05 -0000	1.1
  +++ DocumentNotFoundException.java	3 Sep 2004 19:41:59 -0000	1.2
  @@ -27,7 +27,7 @@
    * @version $Id$
    *
    */
  -public class DocumentNotFoundException extends DocumentException
  +public class DocumentNotFoundException extends NodeNotFoundException
   {
   
       /**
  
  
  
  1.1                  jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/page/document/NodeNotFoundException.java
  
  Index: NodeNotFoundException.java
  ===================================================================
  /*
   * Copyright 2000-2001,2004 The Apache Software Foundation.
   * 
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   * 
   *      http://www.apache.org/licenses/LICENSE-2.0
   * 
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   */
  package org.apache.jetspeed.page.document;
  
  /**
   * <p>
   * NodeNotFoundException
   * </p>
   * <p>
   *
   * </p>
   * @author <a href="mailto:weaver@apache.org">Scott T. Weaver</a>
   * @version $Id: NodeNotFoundException.java,v 1.1 2004/09/03 19:41:59 weaver Exp $
   *
   */
  public class NodeNotFoundException extends NodeException
  {
  
      /**
       * 
       */
      public NodeNotFoundException()
      {
          super();
          // TODO Auto-generated constructor stub
      }
  
      /**
       * @param message
       */
      public NodeNotFoundException( String message )
      {
          super(message);
          // TODO Auto-generated constructor stub
      }
  
      /**
       * @param nested
       */
      public NodeNotFoundException( Throwable nested )
      {
          super(nested);
          // TODO Auto-generated constructor stub
      }
  
      /**
       * @param msg
       * @param nested
       */
      public NodeNotFoundException( String msg, Throwable nested )
      {
          super(msg, nested);
          // 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