01: package com.sun.portal.desktop.encode;
02:
03: import com.sun.portal.desktop.DesktopError;
04:
05: /**
06: * This error is thrown when a serious, non-recoverable
07: * problem occurs initializing the encoder subsystem.
08: */
09: public class EncoderError extends DesktopError {
10: public EncoderError(String msg) {
11: super (msg);
12: }
13:
14: public EncoderError(String msg, Throwable t) {
15: super(msg, t);
16: }
17: }
|