how do I make a constructor for a class that may t...
# getting-started
h
how do I make a constructor for a class that may throw an exception and thus does not instantiate?
s
Copy code
class Team( val size : Int ) {
    init {
        require( size > 3 )
    }
}
😍 1
h
thank you!