Messenger/RichListView/0 Versions/2014.05.11.-2014.05.13/RichListView/NoParentException.cs

30 lines
815 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SzNPProjects
{
class NoParentException : Exception
{
/*public override System.Collections.IDictionary Data
{
get
{
var ret = new Dictionary<string, string>();
ret["details"] = "Try to reference ListViewItem which is not assigned to a ListView control.";
return ret;
}
}
public override string Message
{
get
{
return "Try to reference ListViewItem which is not assigned to a ListView control.";
}
}*/
public NoParentException(string message) : base(message)
{
}
}
}