mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-29 03:28:26 +00:00
27 lines
899 B
C#
27 lines
899 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Mono.Cecil;
|
|
|
|
namespace Mirror.Weaver
|
|
{
|
|
[Serializable]
|
|
public abstract class WeaverException : Exception
|
|
{
|
|
public MemberReference MemberReference { get; }
|
|
|
|
protected WeaverException(string message, MemberReference member) : base(message)
|
|
{
|
|
MemberReference = member;
|
|
}
|
|
|
|
protected WeaverException(SerializationInfo serializationInfo, StreamingContext streamingContext) : base(serializationInfo, streamingContext) {}
|
|
}
|
|
|
|
[Serializable]
|
|
public class GenerateWriterException : WeaverException
|
|
{
|
|
public GenerateWriterException(string message, MemberReference member) : base(message, member) {}
|
|
protected GenerateWriterException(SerializationInfo serializationInfo, StreamingContext streamingContext) : base(serializationInfo, streamingContext) {}
|
|
}
|
|
}
|