01: /*
02: * Copyright (c) 1998 - 2005 Versant Corporation
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * Versant Corporation - initial API and implementation
10: */
11: package com.versant.core.common;
12:
13: import javax.jdo.JDOUserException;
14:
15: /**
16: * This is thrown when a null element is found in our added to a collection.
17: */
18: public class VersantNullElementException extends JDOUserException {
19:
20: public VersantNullElementException() {
21: }
22:
23: public VersantNullElementException(String msg) {
24: super (msg);
25: }
26:
27: public VersantNullElementException(String msg, Throwable[] nested) {
28: super (msg, nested);
29: }
30:
31: public VersantNullElementException(String msg, Throwable nested) {
32: super(msg, nested);
33: }
34:
35: }
|