Constructs a new lock exception with no reason. this("An exception for no reason whatsoever.");
this("An exception for no reason whatsoever.");
Constructs a lock exception for the reason specified.paramreason the reason for the exception super(reason);
super(reason);
Constructs a lock exception caused by another exception.parame the cause of the exception this("A lock exception caused by: " + e.getMessage());
this("A lock exception caused by: " + e.getMessage());