All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.schlichtherle.truezip.fs.FsFalsePositiveArchiveException Maven / Gradle / Ivy

/*
 * Copyright (C) 2005-2015 Schlichtherle IT Services.
 * All rights reserved. Use is subject to license terms.
 */
package de.schlichtherle.truezip.fs;

import de.schlichtherle.truezip.util.ControlFlowException;
import java.io.IOException;
import javax.annotation.concurrent.Immutable;

/**
 * Indicates that a file system is a false positive file system.
 * 

* This exception type is reserved for use by * {@link FsController file system controllers} in order to reroute file system * operations to the parent file system of a false positive federated (archive) * file system. * * @see FsFalsePositiveArchiveController * @author Christian Schlichtherle */ @Immutable @SuppressWarnings("serial") // serializing an exception for a temporary event is nonsense! class FsFalsePositiveArchiveException extends ControlFlowException { FsFalsePositiveArchiveException(final IOException cause) { super(cause); assert null != cause; } @Override public IOException getCause() { return (IOException) super.getCause(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy