Package hdf.hdflib

Class HDFLibraryException

  • All Implemented Interfaces:
    java.io.Serializable

    public class HDFLibraryException
    extends HDFException

    The class HDFException returns errors raised by the HDF library.

    In principle, this includes any and all errors possible from the HDF library. However, most error conditions are not yet detected in this version of the Java interface. This will be added in future releases. The only HDF library error currently raised are errors in Hopen, such as ``file not found''.

    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getMessage()  
      void printStackTrace()
      Prints this HDFLibraryException, the HDF Library error stack, and and the Java stack trace to the standard error stream.
      void printStackTrace​(java.io.File f)
      Prints this HDFLibraryException the HDF Library error stack, and and the Java stack trace to the specified print stream.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • HDFLibraryException

        public HDFLibraryException()
      • HDFLibraryException

        public HDFLibraryException​(java.lang.String s)
      • HDFLibraryException

        public HDFLibraryException​(int err)
    • Method Detail

      • printStackTrace

        public void printStackTrace()
        Prints this HDFLibraryException, the HDF Library error stack, and and the Java stack trace to the standard error stream.
        Overrides:
        printStackTrace in class java.lang.Throwable
      • printStackTrace

        public void printStackTrace​(java.io.File f)
        Prints this HDFLibraryException the HDF Library error stack, and and the Java stack trace to the specified print stream.
        Parameters:
        f - the file print stream.