24 references to DataException
System.Data.Common (24)
System\Data\Common\AdapterUtil.Common.cs (1)
42DataException e = new DataException(message);
System\Data\DataException.cs (21)
44public ConstraintException() : base(SR.DataSet_DefaultConstraintException) 49public ConstraintException(string? s) : base(s ?? SR.DataSet_DefaultConstraintException) 73public DeletedRowInaccessibleException() : base(SR.DataSet_DefaultDeletedRowInaccessibleException) 81public DeletedRowInaccessibleException(string? s) : base(s ?? SR.DataSet_DefaultDeletedRowInaccessibleException) 102public DuplicateNameException() : base(SR.DataSet_DefaultDuplicateNameException) 107public DuplicateNameException(string? s) : base(s ?? SR.DataSet_DefaultDuplicateNameException) 128public InRowChangingEventException() : base(SR.DataSet_DefaultInRowChangingEventException) 133public InRowChangingEventException(string? s) : base(s ?? SR.DataSet_DefaultInRowChangingEventException) 154public InvalidConstraintException() : base(SR.DataSet_DefaultInvalidConstraintException) 159public InvalidConstraintException(string? s) : base(s ?? SR.DataSet_DefaultInvalidConstraintException) 180public MissingPrimaryKeyException() : base(SR.DataSet_DefaultMissingPrimaryKeyException) 185public MissingPrimaryKeyException(string? s) : base(s ?? SR.DataSet_DefaultMissingPrimaryKeyException) 206public NoNullAllowedException() : base(SR.DataSet_DefaultNoNullAllowedException) 211public NoNullAllowedException(string? s) : base(s ?? SR.DataSet_DefaultNoNullAllowedException) 232public ReadOnlyException() : base(SR.DataSet_DefaultReadOnlyException) 237public ReadOnlyException(string? s) : base(s ?? SR.DataSet_DefaultReadOnlyException) 258public RowNotInTableException() : base(SR.DataSet_DefaultRowNotInTableException) 263public RowNotInTableException(string? s) : base(s ?? SR.DataSet_DefaultRowNotInTableException) 284public VersionNotFoundException() : base(SR.DataSet_DefaultVersionNotFoundException) 289public VersionNotFoundException(string? s) : base(s ?? (SR.DataSet_DefaultVersionNotFoundException)) 357private static Exception _Data(string error) => TraceExceptionAsReturnValue(new DataException(error));
System\Data\Filter\FilterException.cs (1)
23public InvalidExpressionException(string? s) : base(s) { }
System\Data\StrongTypingException.cs (1)
28public StrongTypingException(string? message) : base(message)