FileDocCategorySizeDatePackage
LockingException.javaAPI DocExample209Mon Nov 24 09:58:16 GMT 2003com.oreilly.patterns.chapter10

LockingException.java

// LockingException required for compile;

package com.oreilly.patterns.chapter10;

public class LockingException extends Exception {
    public LockingException(String s) {
        super(s);
    }
}