You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
900 B
27 lines
900 B
using System;
|
|
using System.Runtime.Serialization;
|
|
using Mono.CecilX;
|
|
|
|
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) {}
|
|
}
|
|
}
|