コード例 #1
0
ファイル: MapTileAdapter.cs プロジェクト: SuminHan/utymap
        /// <summary> Adapts error message </summary>
        public void AdaptError(string message)
        {
            var exception = new MapDataException(message);

            _trace.Error(TraceCategory, exception, "cannot load tile: {0}", _tile.ToString());
            _observer.OnError(exception);
        }
コード例 #2
0
 /// <summary> Adapts error message </summary>
 public void AdaptError(string message)
 {
     var exception = new MapDataException(message);
     _trace.Error(TraceCategory, exception, "cannot load tile: {0}", _tile.ToString());
     _observer.OnError(exception);
 }