01: /*
02: * SRADecoderException.java
03: *
04: * Created on November 11, 2002, 4:50 PM
05: */
06:
07: /**
08: *
09: * @author ss133690
10: * @version
11: */package com.sun.portal.cli.cert;
12:
13: public class SRADecoderException extends java.lang.Exception {
14:
15: /**
16: * Creates new <code>SRADecoderException</code> without detail message.
17: */
18: public SRADecoderException() {
19: }
20:
21: /**
22: * Constructs an <code>SRADecoderException</code> with the specified detail message.
23: * @param msg the detail message.
24: */
25: public SRADecoderException(String msg) {
26: super(msg);
27: }
28: }
|