001 /*
002 * $Id: KatConcurrentModificationException.java,v 1.1 2004/12/13 02:24:47 mitch Exp $
003 *
004 * Copyright (c) 2004, FullSpan Software (www.fullspan.com)
005 *
006 * Licensed under the BSD License
007 * OSI Certified Open Source Software (www.opensource.org)
008 *
009 * You may not use this file except in compliance with the License. You should
010 * have received a copy of the License with this distribution, or you can find
011 * it at: http://www.fullspan.com/shared/license.html.
012 *
013 * NO WARRANTY - USE AT YOUR OWN RISK. All software and other materials
014 * distributed under the License are provided on an "AS IS" BASIS, WITHOUT
015 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
016 */
017 package com.fullspan.kat.exception;
018
019 import com.fullspan.kat.app.KatApp;
020 import com.fullspan.kat.resource.*;
021
022 /**
023 *
024 * @author Mitch Stuart
025 */
026 public class KatConcurrentModificationException extends KatDataAccessException
027 {
028 public KatConcurrentModificationException(String message)
029 {
030 super(message);
031 }
032
033 public KatConcurrentModificationException(String message, Throwable cause)
034 {
035 super(message, cause);
036 }
037
038 public KatConcurrentModificationException()
039 {
040 this(KatApp.getApp().getMessage(KatMsgKeys.ERR.CONCURRENT_MODIFICATION));
041 }
042
043 }