1 2 package com.ca.commons.security.asn1; 3 4 /** 5 * The exception will be thrown when some error occurs during 6 * the creation/coding of the ASN1Objects. 7 * 8 * @author who 9 */ 10 public class ASN1Exception extends Exception implements java.io.Serializable 11 { 12 13 /** 14 * No description message. 15 */ 16 public ASN1Exception() 17 { 18 super(); 19 } 20 21 /** 22 * Gives a description message to the exception. 23 */ 24 public ASN1Exception(String msg) 25 { 26 super(msg); 27 } 28 } 29