global.namespace.fun.io.delta.WrongBaseArchiveFileException Maven / Gradle / Ivy
/*
* Copyright (C) 2013-2018 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package global.namespace.fun.io.delta;
import java.io.IOException;
/**
* Indicates that the first archive file provided for patching doesn't match the first archive file which was used to
* compute the delta archive file.
*
* @author Christian Schlichtherle
*/
public class WrongBaseArchiveFileException extends IOException {
private static final long serialVersionUID = 0L;
WrongBaseArchiveFileException(Throwable cause) { super(cause); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy