01: /*
02: * UnknownLayoutException.java Sun Microsystems
03: *
04: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
05: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
06: */
07:
08: package com.sun.portal.providers.util;
09:
10: import com.sun.portal.providers.ProviderException;
11:
12: public class UnknownLayoutException extends ProviderException {
13: public UnknownLayoutException(String msg) {
14: super (msg);
15: }
16:
17: public UnknownLayoutException(String msg, Throwable e) {
18: super(msg, e);
19: }
20: }
|