001 package org.bouncycastle.crypto;
002
003 public class DataLengthException extends RuntimeCryptoException
004 {
005 public DataLengthException() {}
006
007 public DataLengthException(String par1Str)
008 {
009 super(par1Str);
010 }
011 }