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

com.cedarsoftware.ncube.rules.RulesError.groovy Maven / Gradle / Ivy

There is a newer version: 5.6.9
Show newest version
package com.cedarsoftware.ncube.rules

import groovy.transform.CompileStatic

@CompileStatic
class RulesError
{
    String category
    String code
    String message

    RulesError(String category, String code, String message)
    {
        this.category = category
        this.code = code
        this.message = message
    }

    String toString()
    {
        return message
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy