com.canoo.platform.server.security.SecurityException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dolphin-platform-security-server Show documentation
Show all versions of dolphin-platform-security-server Show documentation
The Dolphin Platform is a framework that implements the presentation model pattern and provides amodern way to create enterprise applications. The Platform provides several client implementations that all canbe used in combination with a general sever API.
package com.canoo.platform.server.security;
import org.apiguardian.api.API;
@API(since = "0.19.0", status = API.Status.EXPERIMENTAL)
public class SecurityException extends RuntimeException {
public SecurityException(final String message) {
super(message);
}
public SecurityException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy