Class WriteLockException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.owasp.dependencycheck.exception.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.
-
-
-
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.
-
-