tkormann    02/04/23 10:15:37

  Added:       sources/org/apache/batik/dom/svg SVGOMException.java
  Log:
  add a new exception
  
  Revision  Changes    Path
  1.1                  xml-batik/sources/org/apache/batik/dom/svg/SVGOMException.java
  
  Index: SVGOMException.java
  ===================================================================
  /*****************************************************************************
   * Copyright (C) The Apache Software Foundation. All rights reserved.        *
   * ------------------------------------------------------------------------- *
   * This software is published under the terms of the Apache Software License *
   * version 1.1, a copy of which has been included with this distribution in  *
   * the LICENSE file.                                                         *
   *****************************************************************************/
  
  package org.apache.batik.dom.svg;
  
  import org.w3c.dom.svg.SVGException;
  
  /**
   * An implementation of the SVGException class.
   *
   * @author <a href="mailto:[EMAIL PROTECTED]";>Thierry Kormann</a>
   * @version $Id: SVGOMException.java,v 1.1 2002/04/23 17:15:37 tkormann Exp $
   */
  public class SVGOMException extends SVGException {
  
      /**
       * Constructs a new <tt>SVGOMException</tt> with the specified parameters.
       *
       * @param code the exception code
       * @param message the error message
       */
      public SVGOMException(short code, String message) {
          super(code, message);
      }
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to