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