Class DiskAccessException

    • Constructor Summary

      Constructors 
      Constructor Description
      DiskAccessException()
      Constructs a new DiskAccessException.
      DiskAccessException​(java.lang.String msg)
      Constructs a new DiskAccessException with a message string.
      DiskAccessException​(java.lang.String msg, java.lang.String regionName)
      Constructs a new DiskAccessException with a message string.
      DiskAccessException​(java.lang.String msg, java.lang.Throwable cause)
      Constructs a new DiskAccessException with a message string and a cause.
      DiskAccessException​(java.lang.String msg, java.lang.Throwable cause, java.lang.String regionName)
      Constructs a new DiskAccessException with a message string and a cause.
      DiskAccessException​(java.lang.String msg, java.lang.Throwable cause, DiskStore ds)
      Constructs a new DiskAccessException with a message string and a cause.
      DiskAccessException​(java.lang.String msg, DiskStore ds)
      Constructs a new DiskAccessException with a message string.
      DiskAccessException​(java.lang.String msg, Region r)
      Constructs a new DiskAccessException with a message string.
      DiskAccessException​(java.lang.Throwable cause)
      Constructs a new DiskAccessException with a cause.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean isRemote()
      Returns true if this exception originated from a remote node.
      • Methods inherited from class java.lang.Throwable

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

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

      • DiskAccessException

        public DiskAccessException()
        Constructs a new DiskAccessException.
      • DiskAccessException

        public DiskAccessException​(java.lang.String msg,
                                   Region r)
        Constructs a new DiskAccessException with a message string.
        Parameters:
        msg - a message string
        r - The Region for which the disk operation failed
      • DiskAccessException

        public DiskAccessException​(java.lang.String msg,
                                   java.lang.String regionName)
        Constructs a new DiskAccessException with a message string.
        Parameters:
        msg - a message string
        regionName - The name of the Region for which the disk operation failed
        Since:
        GemFire 6.5
      • DiskAccessException

        public DiskAccessException​(java.lang.String msg,
                                   DiskStore ds)
        Constructs a new DiskAccessException with a message string.
        Parameters:
        msg - a message string
        ds - The disk store for which the disk operation failed
        Since:
        GemFire 6.5
      • DiskAccessException

        public DiskAccessException​(java.lang.String msg,
                                   java.lang.Throwable cause,
                                   java.lang.String regionName)
        Constructs a new DiskAccessException with a message string and a cause.
        Parameters:
        msg - the message string
        cause - a causal Throwable
        regionName - The name of the Region for which the disk operation failed
        Since:
        GemFire 6.5
      • DiskAccessException

        public DiskAccessException​(java.lang.String msg,
                                   java.lang.Throwable cause,
                                   DiskStore ds)
        Constructs a new DiskAccessException with a message string and a cause.
        Parameters:
        msg - the message string
        cause - a causal Throwable
        ds - The disk store for which the disk operation failed
        Since:
        GemFire 6.5
      • DiskAccessException

        public DiskAccessException​(java.lang.Throwable cause)
        Constructs a new DiskAccessException with a cause.
        Parameters:
        cause - a causal Throwable
      • DiskAccessException

        public DiskAccessException​(java.lang.String msg,
                                   java.lang.Throwable cause)
        Constructs a new DiskAccessException with a message string and a cause.
        Parameters:
        msg - the message string
        cause - a causal Throwable
        Since:
        GemFire 8.0
      • DiskAccessException

        public DiskAccessException​(java.lang.String msg)
        Constructs a new DiskAccessException with a message string.
        Parameters:
        msg - the message string
    • Method Detail

      • isRemote

        public boolean isRemote()
        Returns true if this exception originated from a remote node.
        Returns:
        whether this exception originated from a remote node