Class GemFireException

  • java.lang.Object
    • java.lang.Throwable
      • java.lang.Exception
        • java.lang.RuntimeException
          • org.apache.geode.GemFireException
    • Constructor Summary

      Constructors 
      Constructor Description
      GemFireException()
      Creates a new GemFireException with no detailed message.
      GemFireException​(java.lang.String message)
      Creates a new GemFireException with the given detail message.
      GemFireException​(java.lang.String message, java.lang.Throwable cause)
      Creates a new GemFireException with the given detail message and cause.
      GemFireException​(java.lang.Throwable cause)
      Creates a new GemFireException with the given cause and no detail message
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Throwable getRootCause()
      Returns the root cause of this GemFireException or null if the cause is nonexistent or unknown.
      • Methods inherited from class java.lang.Throwable

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

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

      • GemFireException

        public GemFireException()
        Creates a new GemFireException with no detailed message.
      • GemFireException

        public GemFireException​(java.lang.String message)
        Creates a new GemFireException with the given detail message.
        Parameters:
        message - the detail message
      • GemFireException

        public GemFireException​(java.lang.String message,
                                java.lang.Throwable cause)
        Creates a new GemFireException with the given detail message and cause.
        Parameters:
        message - the detail message
        cause - the cause
      • GemFireException

        public GemFireException​(java.lang.Throwable cause)
        Creates a new GemFireException with the given cause and no detail message
        Parameters:
        cause - the cause
    • Method Detail

      • getRootCause

        public java.lang.Throwable getRootCause()
        Returns the root cause of this GemFireException or null if the cause is nonexistent or unknown.
        Returns:
        The root cause of this GemFireException or null if the cause is nonexistent or unknown