1 | // Copyright (c) 2009-2013 AlphaSierraPapa for the SharpDevelop Team |
---|
2 | // |
---|
3 | // Permission is hereby granted, free of charge, to any person obtaining a copy of this |
---|
4 | // software and associated documentation files (the "Software"), to deal in the Software |
---|
5 | // without restriction, including without limitation the rights to use, copy, modify, merge, |
---|
6 | // publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons |
---|
7 | // to whom the Software is furnished to do so, subject to the following conditions: |
---|
8 | // |
---|
9 | // The above copyright notice and this permission notice shall be included in all copies or |
---|
10 | // substantial portions of the Software. |
---|
11 | // |
---|
12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
---|
13 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR |
---|
14 | // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE |
---|
15 | // FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
---|
16 | // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
---|
17 | // DEALINGS IN THE SOFTWARE. |
---|
18 | |
---|
19 | using System; |
---|
20 | using System.Diagnostics; |
---|
21 | using System.Runtime.Serialization; |
---|
22 | |
---|
23 | namespace ICSharpCode.NRefactory.Xml |
---|
24 | { |
---|
25 | static class Log |
---|
26 | { |
---|
27 | /// <summary> Throws exception if condition is false </summary> |
---|
28 | internal static void Assert(bool condition, string message) |
---|
29 | { |
---|
30 | if (!condition) { |
---|
31 | throw new InternalException("Assertion failed: " + message); |
---|
32 | } |
---|
33 | } |
---|
34 | |
---|
35 | /// <summary> Throws exception if condition is false </summary> |
---|
36 | [Conditional("DEBUG")] |
---|
37 | internal static void DebugAssert(bool condition, string message) |
---|
38 | { |
---|
39 | if (!condition) { |
---|
40 | throw new InternalException("Assertion failed: " + message); |
---|
41 | } |
---|
42 | } |
---|
43 | |
---|
44 | [Conditional("DEBUG")] |
---|
45 | internal static void WriteLine(string text, params object[] pars) |
---|
46 | { |
---|
47 | //System.Diagnostics.Debug.WriteLine(string.Format(CultureInfo.InvariantCulture, "XML: " + text, pars)); |
---|
48 | } |
---|
49 | } |
---|
50 | |
---|
51 | |
---|
52 | /// <summary> |
---|
53 | /// Exception used for internal errors in XML parser. |
---|
54 | /// This exception indicates a bug in NRefactory. |
---|
55 | /// </summary> |
---|
56 | [Serializable] |
---|
57 | [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1064:ExceptionsShouldBePublic", Justification = "This exception is not public because it is not supposed to be caught by user code - it indicates a bug in AvalonEdit.")] |
---|
58 | class InternalException : Exception |
---|
59 | { |
---|
60 | /// <summary> |
---|
61 | /// Creates a new InternalException instance. |
---|
62 | /// </summary> |
---|
63 | public InternalException() : base() |
---|
64 | { |
---|
65 | } |
---|
66 | |
---|
67 | /// <summary> |
---|
68 | /// Creates a new InternalException instance. |
---|
69 | /// </summary> |
---|
70 | public InternalException(string message) : base(message) |
---|
71 | { |
---|
72 | } |
---|
73 | |
---|
74 | /// <summary> |
---|
75 | /// Creates a new InternalException instance. |
---|
76 | /// </summary> |
---|
77 | public InternalException(string message, Exception innerException) : base(message, innerException) |
---|
78 | { |
---|
79 | } |
---|
80 | |
---|
81 | /// <summary> |
---|
82 | /// Creates a new InternalException instance. |
---|
83 | /// </summary> |
---|
84 | protected InternalException(SerializationInfo info, StreamingContext context) : base(info, context) |
---|
85 | { |
---|
86 | } |
---|
87 | } |
---|
88 | } |
---|