com.darwinsys.locks.PessimisticLockException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of darwinsys-api Show documentation
Show all versions of darwinsys-api Show documentation
Ian Darwin's assorted Java stuff,
assembled as an API.
package com.darwinsys.locks;
public class PessimisticLockException extends RuntimeException {
private static final long serialVersionUID = -6060487116987872592L;
public PessimisticLockException(String string) {
super(string);
}
}