01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.rewriter.services;
06:
07: /**
08: * This Exception is thrown when the logging location is not specified.
09: * User: ks135348
10: * Date: May 13, 2004
11: * Time: 4:19:14 PM
12: */
13: public class LoggingInitializationException extends Exception {
14: public LoggingInitializationException() {
15: }
16:
17: public LoggingInitializationException(String msg) {
18: super(msg);
19: }
20: }
|