mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-31 10:29:52 +08:00
33 lines
739 B
C#
33 lines
739 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace MicaSetup.Shell.Dialogs;
|
|
|
|
[Serializable]
|
|
public class PropertySystemException : ExternalException
|
|
{
|
|
public PropertySystemException()
|
|
{
|
|
}
|
|
|
|
public PropertySystemException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public PropertySystemException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
|
|
public PropertySystemException(string message, int errorCode) : base(message, errorCode)
|
|
{
|
|
}
|
|
|
|
protected PropertySystemException(
|
|
System.Runtime.Serialization.SerializationInfo info,
|
|
System.Runtime.Serialization.StreamingContext context)
|
|
: base(info, context)
|
|
{
|
|
}
|
|
}
|