01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: package com.sun.portal.search.soif;
07:
08: /**
09: *
10: */
11: public class SOIFException extends java.io.IOException {
12:
13: /**
14: * Creates new <code>SOIFException</code> without detail message.
15: */
16: public SOIFException() {
17: }
18:
19: /**
20: * Constructs an <code>SOIFException</code> with the specified detail message.
21: * @param msg the detail message.
22: */
23: public SOIFException(String msg) {
24: super(msg);
25: }
26: }
|