com.sap.cloud.security.ams.dcl.archivetools.ArchiveLimitExceededException 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 ArchiveLimitExceededException extends IOException {
private static final long serialVersionUID = 1L;
public ArchiveLimitExceededException(String message) {
super(message);
}
}