com.cedarsoftware.ncube.rules.RulesError.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of n-cube Show documentation
Show all versions of n-cube Show documentation
Multi-dimensional Rule Engine
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