001: /**
002: * Redistribution and use of this software and associated documentation
003: * ("Software"), with or without modification, are permitted provided
004: * that the following conditions are met:
005: *
006: * 1. Redistributions of source code must retain copyright
007: * statements and notices. Redistributions must also contain a
008: * copy of this document.
009: *
010: * 2. Redistributions in binary form must reproduce the
011: * above copyright notice, this list of conditions and the
012: * following disclaimer in the documentation and/or other
013: * materials provided with the distribution.
014: *
015: * 3. The name "Exolab" must not be used to endorse or promote
016: * products derived from this Software without prior written
017: * permission of Intalio, Inc. For written permission,
018: * please contact info@exolab.org.
019: *
020: * 4. Products derived from this Software may not be called "Exolab"
021: * nor may "Exolab" appear in their names without prior written
022: * permission of Intalio, Inc. Exolab is a registered
023: * trademark of Intalio, Inc.
024: *
025: * 5. Due credit should be given to the Exolab Project
026: * (http://www.exolab.org/).
027: *
028: * THIS SOFTWARE IS PROVIDED BY INTALIO, INC. AND CONTRIBUTORS
029: * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
030: * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
031: * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
032: * INTALIO, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
033: * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
034: * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
035: * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
036: * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
037: * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
038: * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
039: * OF THE POSSIBILITY OF SUCH DAMAGE.
040: *
041: * Copyright 1999 (C) Intalio, Inc. All Rights Reserved.
042: *
043: * $Id: ValidityException.java 5951 2006-05-30 22:18:48Z bsnyder $
044: */package org.exolab.castor.mapping;
045:
046: import java.io.PrintWriter;
047: import java.io.PrintStream;
048:
049: import org.castor.util.Messages;
050:
051: /**
052: * An exception indicating an integrity violation.
053: *
054: *
055: * @author <a href="arkin@intalio.com">Assaf Arkin</a>
056: * @version $Revision: 5951 $ $Date: 2006-04-10 16:39:24 -0600 (Mon, 10 Apr 2006) $
057: */
058: public class ValidityException extends Exception {
059: /** SerialVersionUID */
060: private static final long serialVersionUID = 6928906878046428690L;
061:
062: private Exception _except;
063:
064: public ValidityException(String message) {
065: super (Messages.message(message));
066: }
067:
068: public ValidityException(String message, Object arg1) {
069: super (Messages.format(message, arg1));
070: }
071:
072: public ValidityException(String message, Object arg1, Object arg2) {
073: super (Messages.format(message, arg1, arg2));
074: }
075:
076: public ValidityException(String message, Object arg1, Object arg2,
077: Object arg3) {
078: super (Messages.format(message, arg1, arg2, arg3));
079: }
080:
081: public ValidityException(Exception except) {
082: super (Messages.format("mapping.nested", except.toString()));
083: _except = except;
084: }
085:
086: public Exception getException() {
087: return _except;
088: }
089:
090: public void printStackTrace() {
091: if (_except == null)
092: super .printStackTrace();
093: else
094: _except.printStackTrace();
095: }
096:
097: public void printStackTrace(PrintStream print) {
098: if (_except == null)
099: super .printStackTrace(print);
100: else
101: _except.printStackTrace(print);
102: }
103:
104: public void printStackTrace(PrintWriter print) {
105: if (_except == null)
106: super.printStackTrace(print);
107: else
108: _except.printStackTrace(print);
109: }
110:
111: }
|