Home | History | Annotate | Download | only in crypto
      1 package org.bouncycastle.crypto;
      2 
      3 public class OutputLengthException
      4     extends DataLengthException
      5 {
      6     public OutputLengthException(String msg)
      7     {
      8         super(msg);
      9     }
     10 }
     11