committed by
GitHub
3 changed files with 38 additions and 1 deletions
@ -0,0 +1,24 @@ |
|||
using System; |
|||
using System.Runtime.Serialization; |
|||
|
|||
namespace Avalonia.Markup.Xaml |
|||
{ |
|||
public class XamlLoadException: Exception |
|||
{ |
|||
public XamlLoadException() |
|||
{ |
|||
} |
|||
|
|||
protected XamlLoadException(SerializationInfo info, StreamingContext context): base(info, context) |
|||
{ |
|||
} |
|||
|
|||
public XamlLoadException(string message): base(message) |
|||
{ |
|||
} |
|||
|
|||
public XamlLoadException(string message, Exception innerException): base(message, innerException) |
|||
{ |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue