01: package com.sun.portal.desktop.encode;
02:
03: import com.sun.portal.providers.ProviderException;
04:
05: /**
06: * This exception is used to indicate that an
07: * exceptional condition has occured in the
08: * encoder subsystem.
09: */
10: public class EncoderException extends ProviderException {
11: public EncoderException(String msg) {
12: super (msg);
13: }
14:
15: public EncoderException(String msg, Throwable t) {
16: super(msg, t);
17: }
18: }
|