de.schlichtherle.truezip.crypto.raes.RaesAuthenticationException Maven / Gradle / Ivy
/*
* Copyright (C) 2005-2015 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package de.schlichtherle.truezip.crypto.raes;
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!");
}
}