01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.objectserver.api;
05:
06: import com.tc.object.ObjectID;
07:
08: import java.io.Serializable;
09:
10: public class NoSuchObjectException extends Exception implements
11: Serializable {
12:
13: public NoSuchObjectException(ObjectID id) {
14: super (id + " does not exist");
15: }
16:
17: }
|