Class WriteLockException

  • All Implemented Interfaces:
    java.io.Serializable

    @ThreadSafe
    public class WriteLockException
    extends java.lang.Exception
    An exception used when trying to obtain a lock on a resource.
    Author:
    Jeremy Long
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      WriteLockException()
      Creates a new WriteLockException.
      WriteLockException​(java.lang.String msg)
      Creates a new WriteLockException.
      WriteLockException​(java.lang.String msg, java.lang.Throwable ex)
      Creates a new WriteLockException.
      WriteLockException​(java.lang.Throwable ex)
      Creates a new WriteLockException.
    • Method Summary

      • 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

      • WriteLockException

        public WriteLockException()
        Creates a new WriteLockException.
      • WriteLockException

        public WriteLockException​(java.lang.String msg)
        Creates a new WriteLockException.
        Parameters:
        msg - a message for the exception.
      • WriteLockException

        public WriteLockException​(java.lang.Throwable ex)
        Creates a new WriteLockException.
        Parameters:
        ex - the cause of the exception.
      • WriteLockException

        public WriteLockException​(java.lang.String msg,
                                  java.lang.Throwable ex)
        Creates a new WriteLockException.
        Parameters:
        msg - a message for the exception.
        ex - the cause of the exception.