01: /*
02: * Copyright (C) 2007, 2008 XStream Committers.
03: * All rights reserved.
04: *
05: * The software in this package is published under the terms of the BSD
06: * style license a copy of which has been included with this distribution in
07: * the LICENSE.txt file.
08: *
09: * Created on 22. October 2007 by Joerg Schaible
10: */
11: package com.thoughtworks.xstream;
12:
13: /**
14: * Exception thrown configuring an XStream instance.
15: *
16: * @author Joe Walnes
17: * @author Jörg Schaible
18: * @since 1.3
19: */
20: public class InitializationException extends
21: XStream.InitializationException {
22: public InitializationException(String message, Throwable cause) {
23: super (message, cause);
24: }
25:
26: public InitializationException(String message) {
27: super(message);
28: }
29: }
|