I would like to check constructor arguments and refuse to construct throwing IllegalArgumentException in case the arguments set is not valid (the values don't fit in expected constraints). How to code this in Scala?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
In Scala, the whole body of the class is your primary constructor, so you can add your validation logic there.
Scala provides a utility method
A better approach might be to provide a factory method that gives a
|
|||||||
|
|
|||||||
|