KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > tools > codec > Base64FormatException


1 /*
2  * Copyright © World Wide Web Consortium, (Massachusetts Institute of Technology,
3  * Institut National de Recherche en Informatique et en Automatique, Keio University).
4  * All Rights Reserved. http://www.w3.org/Consortium/Legal/
5  */

6 package org.w3c.tools.codec;
7
8 /**
9  * Exception for invalid BASE64 streams.
10  */

11 public class Base64FormatException extends Exception JavaDoc
12 {
13
14     /**
15      * Create that kind of exception
16      * @param msg The associated error message
17      */

18     public Base64FormatException(String JavaDoc msg)
19     {
20         super(msg);
21     }
22
23 }
24
Popular Tags