com.sap.cloud.security.ams.dcl.archivetools.ArchiveMalformedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of archive-tools Show documentation
Show all versions of archive-tools Show documentation
Tools for handling AMS bundles.
The newest version!
/************************************************************************
* © 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
************************************************************************/
package com.sap.cloud.security.ams.dcl.archivetools;
import java.io.IOException;
public class ArchiveMalformedException extends IOException {
private static final long serialVersionUID = 1L;
public ArchiveMalformedException(String message) {
super(message);
}
public ArchiveMalformedException(String message, Throwable cause) {
super(message, cause);
}
}