22 lines
644 B
C#
22 lines
644 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Voile.Common;
|
|
|
|
namespace Voile.Patchouli.Reflection
|
|
{
|
|
|
|
[Serializable]
|
|
public class VoileReflectionException : VoileException
|
|
{
|
|
public VoileReflectionException() { }
|
|
public VoileReflectionException(string message) : base(message) { }
|
|
public VoileReflectionException(string message, Exception inner) : base(message, inner) { }
|
|
protected VoileReflectionException(
|
|
System.Runtime.Serialization.SerializationInfo info,
|
|
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
|
|
}
|
|
}
|