de.schlichtherle.truezip.fs.FsReadOnlyArchiveFileSystemException 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 javax.annotation.concurrent.ThreadSafe;
/**
* Thrown to indicate that an operation was trying to modify a read-only
* {@link FsArchiveFileSystem}.
*
* @author Christian Schlichtherle
*/
@ThreadSafe
public final class FsReadOnlyArchiveFileSystemException
extends FsArchiveFileSystemException {
private static final long serialVersionUID = 987645923519873262L;
FsReadOnlyArchiveFileSystemException() {
super((String) null, "This is a read-only archive file system!");
}
}