com.github.isaichkindanila.crypt.lib.stream.MalformedStreamHeaderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crypt-lib Show documentation
Show all versions of crypt-lib Show documentation
Simple Java library for stream ciphers based encryption
The newest version!
package com.github.isaichkindanila.crypt.lib.stream;
/**
* Thrown when encrypted stream's header is malformed.
* This means that either the stream was not encrypted to begin with, or was corrupted.
*/
@SuppressWarnings("WeakerAccess")
public class MalformedStreamHeaderException extends RuntimeException {
}