01: /*
02: * Copyright 2002 (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: NotAViewException.java,v 1.3 2002/11/08 05:06:25 jackknifebarber Exp $
09: */
10:
11: package com.triactive.jdo.store;
12:
13: /**
14: * A <tt>NotAViewException</tt> is thrown during schema validation if a
15: * table should be a view but is found not to be in the database.
16: *
17: * @author <a href="mailto:mmartin5@austin.rr.com">Mike Martin</a>
18: * @version $Revision: 1.3 $
19: *
20: * @see View
21: */
22:
23: public class NotAViewException extends SchemaValidationException {
24: /**
25: * Constructs a not-a-view exception.
26: *
27: * @param table The table that is of the wrong type.
28: */
29:
30: public NotAViewException(Table table) {
31: super ("Table is of the wrong type, should be a view:" + table);
32: }
33: }
|