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