< prev index next >

src/java.base/share/classes/jdk/internal/org/xml/sax/SAXNotSupportedException.java

Print this page




  56     /**
  57      * Construct a new exception with no message.
  58      */
  59     public SAXNotSupportedException ()
  60     {
  61         super();
  62     }
  63 
  64 
  65     /**
  66      * Construct a new exception with the given message.
  67      *
  68      * @param message The text message of the exception.
  69      */
  70     public SAXNotSupportedException (String message)
  71     {
  72         super(message);
  73     }
  74 
  75     // Added serialVersionUID to preserve binary compatibility

  76     static final long serialVersionUID = -1422818934641823846L;
  77 }
  78 
  79 // end of SAXNotSupportedException.java


  56     /**
  57      * Construct a new exception with no message.
  58      */
  59     public SAXNotSupportedException ()
  60     {
  61         super();
  62     }
  63 
  64 
  65     /**
  66      * Construct a new exception with the given message.
  67      *
  68      * @param message The text message of the exception.
  69      */
  70     public SAXNotSupportedException (String message)
  71     {
  72         super(message);
  73     }
  74 
  75     // Added serialVersionUID to preserve binary compatibility
  76     @java.io.Serial
  77     static final long serialVersionUID = -1422818934641823846L;
  78 }
  79 
  80 // end of SAXNotSupportedException.java
< prev index next >