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

org.openl.rules.ui.Message Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.rules.ui;

public class Message extends RuntimeException {

    private static final long serialVersionUID = 1L;

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

    public Message(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy