Skip to content

Commit

Permalink
feat: add description to exception class
Browse files Browse the repository at this point in the history
  • Loading branch information
rapatao committed Jul 6, 2024
1 parent d86c599 commit 48ee210
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package com.rapatao.projects.ruleset.engine.types.errors

/**
* Throw when an expression is using an unrecognized operator
*/
class UnknownOperator(name: String) : RuntimeException(
"Unknown operator: $name"
)

0 comments on commit 48ee210

Please sign in to comment.