com.day.cq.dam.api.FolderSettingsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
package com.day.cq.dam.api;
/**
*
*/
public class FolderSettingsException extends Exception {
public FolderSettingsException() {
super();
}
public FolderSettingsException(String s) {
super(s);
}
public FolderSettingsException(Throwable t) {
super(t);
}
public FolderSettingsException(String s, Throwable t) {
super(s, t);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy