001/*
002 *  The node controller for actor instances.
003 *  Copyright (c) 2010 The Regents of the University of California.
004 *  All rights reserved.
005 *  Permission is hereby granted, without written agreement and without
006 *  license or royalty fees, to use, copy, modify, and distribute this
007 *  software and its documentation for any purpose, provided that the above
008 *  copyright notice and the following two paragraphs appear in all copies
009 *  of this software.
010 *  IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY
011 *  FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
012 *  ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
013 *  THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
014 *  SUCH DAMAGE.
015 *  THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
016 *  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
017 *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
018 *  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
019 *  CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
020 *  ENHANCEMENTS, OR MODIFICATIONS.
021 *  PT_COPYRIGHT_VERSION_2
022 *  COPYRIGHTENDKEY
023 */
024package org.kepler.kar;
025
026/**
027 * exception thrown when a kar file has already been cached.
028 * 
029 *@author Chad Berkley
030 *@created 09.15, 2005
031 */
032public class KARAlreadyCachedException extends Exception {
033        public KARAlreadyCachedException(String msg) {
034                super(msg);
035        }
036}