1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
//start of BadHuffmanTableException.java
//TEXT_STYLE:CODE=Shift_JIS(Japanese):RET_CODE=CRLF
/**
* BadHuffmanTableException.java
*
* Copyright (C) 2001-2002 Michel Ishizuka All rights reserved.
*
* ȉ̏ɓӂȂ\[XƃoCi`̍ĔzzƎgp
* ύX̗Lɂ炸B
*
* PD\[XR[h̍ĔzzɂĒ쌠\ ̏̃Xg
* щL̐ێȂĂ͂ȂȂB
*
* QDoCi`̍ĔzzɂĒ쌠\ ̏̃Xg
* щL̐gp ̑̔zz
* ܂ގɋLqȂȂȂB
*
* ̃\tgEFA͐Β˔ڂɂĖۏŒA̖
* IBłƂۏAilLƂۏɂƂǂ܂炸A
* Ȃ閾IшÎIȕۏȂB
* Β˔ڂ ̃\tgEFA̎gpɂ钼ړIAԐړIA
* IAȁAT^IȁA邢͕KRIȑQ(gpɂf[^
* AƖ̒f〈܂Ăv̈⎸Ai
* T[rX̓l邪AĂꂾɌ肳Ȃ
* Q)ɑāAȂ鎖Ԃ̌ƂȂƂĂA_̐
* C△ߎӔC܂ ȂӔC낤ƂAƂꂪs
* ŝׂ߂łƂĂA܂͂̂悤ȑQ̉\
* ĂƂĂ̐ӔCȂ̂ƂB
*/
package jp.gr.java_conf.dangan.util.lha;
//import classes and interfaces
//import exceptions
import java.io.IOException;
/**
* BlockHuffman.LenListToCodeList() ŁA
* nꂽ LenList ( nt}̕\ )sȂ߁A
* nt}łȂB<br>
*
* <pre>
* -- revision history --
* $Log: BadHuffmanTableException.java,v $
* Revision 1.0 2002/07/24 00:00:00 dangan
* add to version control
* [maintenance]
* ^up~
* CZX̏C
*
* </pre>
*
* @author $Author: dangan $
* @version $Revision: 1.0 $
*/
public class BadHuffmanTableException extends IOException{
//------------------------------------------------------------------
// constructor
//------------------------------------------------------------------
// public BadHuffmanTableException()
// public BadHuffmanTableException( String message )
//------------------------------------------------------------------
/**
* V BadHuffmanTableException \zB
*/
public BadHuffmanTableException(){
super();
}
/**
* V BadHuffmanTableException \zB
*
* @param message ڍׂȃbZ[W
*/
public BadHuffmanTableException( String message ){
super( message );
}
}
//end of BadHuffmanTableException.java
|