arp.repository.CanNotAcquireLockException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ARP Show documentation
Show all versions of ARP Show documentation
a java development framework with aggregation, repository and process
The newest version!
package arp.repository;
public class CanNotAcquireLockException extends RuntimeException {
private static final long serialVersionUID = 4650998033057407283L;
public CanNotAcquireLockException(String nameOfProcessOccupyingLock) {
super("lock is occupied by process: " + nameOfProcessOccupyingLock);
}
}