using System;
-using System.Runtime.Serialization;
namespace Impostor.Api
{
public ImpostorConfigException(string? message, Exception? innerException) : base(message, innerException)
{
}
-
- protected ImpostorConfigException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
}
}
using System;
-using System.Runtime.Serialization;
namespace Impostor.Api
{
public ImpostorException(string? message, Exception? innerException) : base(message, innerException)
{
}
-
- protected ImpostorException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
}
}
using System;
-using System.Runtime.Serialization;
namespace Impostor.Api
{
public ImpostorProtocolException(string? message, Exception? innerException) : base(message, innerException)
{
}
-
- protected ImpostorProtocolException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
}
}
using System;
-using System.Runtime.Serialization;
using Impostor.Api;
namespace Impostor.Server.Plugins
public PluginLoaderException(string? message, Exception? innerException) : base(message, innerException)
{
}
-
- protected PluginLoaderException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
}
}