net.java.truevfs.driver.zip.raes.crypto.RaesAuthenticationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truevfs-driver-zip-raes Show documentation
Show all versions of truevfs-driver-zip-raes Show documentation
Provides a file system driver for accessing the RAES encrypted ZIP file format, alias ZIP.RAES or TZP. Add the JAR artifact of this module to the run time class path to make its file system drivers available for service location in the client API modules.
/*
* Copyright (C) 2005-2015 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package net.java.truevfs.driver.zip.raes.crypto;
import javax.annotation.concurrent.ThreadSafe;
/**
* Thrown to indicate that a RAES file has been tampered with.
*
* @author Christian Schlichtherle
*/
@ThreadSafe
public class RaesAuthenticationException extends RaesException {
private static final long serialVersionUID = 2362389234686232732L;
/**
* Constructs a RAES exception with
* a detail message indicating that a RAES file has been tampered with.
*/
public RaesAuthenticationException() {
super("Authenticated file content has been tampered with!");
}
}