14 lines
253 B
C#
14 lines
253 B
C#
namespace System.Data
|
|
{
|
|
public class RowNotUniqueException : DataException
|
|
{
|
|
public override string Message
|
|
{
|
|
get
|
|
{
|
|
return "Obtained row is not unique.";
|
|
}
|
|
}
|
|
}
|
|
}
|