13 references to DataException
System.Data.Common (13)
System\Data\DataException.cs (11)
54
public ConstraintException(string? message, Exception? innerException) :
base
(message ?? SR.DataSet_DefaultConstraintException, innerException)
86
public DeletedRowInaccessibleException(string? message, Exception? innerException) :
base
(message ?? SR.DataSet_DefaultDeletedRowInaccessibleException, innerException)
112
public DuplicateNameException(string? message, Exception? innerException) :
base
(message ?? SR.DataSet_DefaultDuplicateNameException, innerException)
138
public InRowChangingEventException(string? message, Exception? innerException) :
base
(message ?? SR.DataSet_DefaultInRowChangingEventException, innerException)
164
public InvalidConstraintException(string? message, Exception? innerException) :
base
(message ?? SR.DataSet_DefaultInvalidConstraintException, innerException)
190
public MissingPrimaryKeyException(string? message, Exception? innerException) :
base
(message ?? SR.DataSet_DefaultMissingPrimaryKeyException, innerException)
216
public NoNullAllowedException(string? message, Exception? innerException) :
base
(message ?? SR.DataSet_DefaultNoNullAllowedException, innerException)
242
public ReadOnlyException(string? message, Exception? innerException) :
base
(message ?? SR.DataSet_DefaultReadOnlyException, innerException)
268
public RowNotInTableException(string? message, Exception? innerException) :
base
(message ?? SR.DataSet_DefaultRowNotInTableException, innerException)
294
public VersionNotFoundException(string? message, Exception? innerException) :
base
(message ?? (SR.DataSet_DefaultVersionNotFoundException), innerException)
354
throw TraceExceptionAsReturnValue(new
DataException
(error, innerException));
System\Data\Filter\FilterException.cs (1)
25
public InvalidExpressionException(string? message, Exception? innerException) :
base
(message, innerException) { }
System\Data\StrongTypingException.cs (1)
33
public StrongTypingException(string? s, Exception? innerException) :
base
(s, innerException)