diff --git a/Source/Timer.cs b/Source/Timer.cs index 2729b54..58076a8 100644 --- a/Source/Timer.cs +++ b/Source/Timer.cs @@ -379,7 +379,14 @@ private void Update() if (this._onComplete != null) { - this._onComplete(); + try + { + this._onComplete(); + } + catch + { + // how to handle exception is left for the author + } } if (this.isLooped)