mount

manderson 2016-06-21T18:17:08.000275Z

Is there a recommended way in mount to handle a situation where the :start initialization of a state throws an exception?

tolitius 2016-06-21T18:26:23.000276Z

@manderson: depends on what behavior you need. in case the whole app should fail fast, nothing is really needed, as it would throw while starting a state. In case you need to do something on failure you can wrap a start function in try/catch. there is an ongoing discussion here: https://github.com/tolitius/mount/issues/50 with some more details

manderson 2016-06-21T18:30:25.000278Z

Ok, makes sense. Thanks for the link; I'll read through that.

tolitius 2016-06-21T18:52:19.000279Z

sure, let me know if you have any more questions