001
002 /*
003 * Copyright (C) 2011 Archie L. Cobbs. All rights reserved.
004 *
005 * $Id: BigFatLockNotHeldException.java 79 2011-04-20 01:50:09Z archie.cobbs $
006 */
007
008 package org.dellroad.stuff.servlet;
009
010 /**
011 * Thrown by {@link BigFatLockHeldAdvice#lockNotHeld} when the lock is not held.
012 */
013 @SuppressWarnings("serial")
014 public class BigFatLockNotHeldException extends RuntimeException {
015
016 public BigFatLockNotHeldException() {
017 }
018
019 public BigFatLockNotHeldException(String message) {
020 super(message);
021 }
022 }
023