Class WriteLockException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.owasp.dependencycheck.exception.WriteLockException
All Implemented Interfaces:
Serializable

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

    • WriteLockException

      public WriteLockException()
      Creates a new WriteLockException.
    • WriteLockException

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

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

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