All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wso2.carbon.roles.mgt.ServerRolesException Maven / Gradle / Ivy

package org.wso2.carbon.roles.mgt;

public class ServerRolesException extends Exception {
    public ServerRolesException(String message, Exception e) {
        super(message, e);
    }

    public ServerRolesException(Exception e) {
        super(e);
    }

    public ServerRolesException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy