01: /*
02: * Copyright 2003 (C) TJDO.
03: * All rights reserved.
04: *
05: * This software is distributed under the terms of the TJDO License version 1.0.
06: * See the terms of the TJDO License in the documentation provided with this software.
07: *
08: * $Id: MissingSchemaTableEntryException.java,v 1.1 2003/09/08 16:38:18 pierreg0 Exp $
09: */
10:
11: package com.triactive.jdo.store;
12:
13: /**
14: * A <tt>MissingSchemaTableEntryException</tt> is thrown if an expected row is
15: * not found in the SchemaTable during schema validation.
16: *
17: * @author <a href="mailto:pierreg0@users.sourceforge.net">Kelly Grizzle</a>
18: * @version $Revision: 1.1 $
19: *
20: * @see StoreManager
21: */
22:
23: public class MissingSchemaTableEntryException extends
24: SchemaValidationException {
25: /**
26: * Constructs a MissingSchemaTableEntryException.
27: *
28: * @param table The SchemaTable.
29: * @param javaName The fully-qualified java class name which has no entry
30: * in the SchemaTable.
31: */
32:
33: public MissingSchemaTableEntryException(SchemaTable table,
34: String javaName) {
35: super ("Could not find a table entry for " + javaName + " in "
36: + table + ".");
37: }
38: }
|