17 types derived from DataException
System.Data (13)
fx\src\data\System\Data\CodeGen\StrongTypingException.cs (2)
20public class StrongTypingException : DataException { 48public class TypedDataSetGeneratorException : DataException {
fx\src\data\System\Data\DataException.cs (10)
44public class ConstraintException : DataException { 61public class DeletedRowInaccessibleException : DataException { 89public class DuplicateNameException : DataException { 107public class InRowChangingEventException : DataException { 125public class InvalidConstraintException : DataException { 143public class MissingPrimaryKeyException : DataException { 161public class NoNullAllowedException : DataException { 179public class ReadOnlyException : DataException { 197public class RowNotInTableException : DataException { 215public class VersionNotFoundException : DataException {
fx\src\data\System\Data\Filter\FilterException.cs (1)
20public class InvalidExpressionException : DataException {
System.Data.Entity (4)
System\Data\EntityException.cs (1)
20public class EntityException : DataException
System\Data\InvalidCommandTreeException.cs (1)
19public sealed class InvalidCommandTreeException : DataException /*InvalidQueryException*/
System\Data\ObjectNotFoundException.cs (1)
20public sealed class ObjectNotFoundException : DataException
System\Data\UpdateException.cs (1)
23public class UpdateException : DataException
3 instantiations of DataException
System.Data (3)
fx\src\data\System\Data\Common\AdapterUtil.cs (1)
179DataException e = new DataException(message);
fx\src\data\System\Data\DataException.cs (2)
325DataException e = new DataException(error); 335DataException e = new DataException(error, innerException);
14 references to DataException
System.Data (14)
fx\src\data\System\Data\Common\AdapterUtil.cs (4)
178static internal DataException Data(string message) { 179DataException e = new DataException(message); 1356static internal DataException RowUpdatedErrors() { 1359static internal DataException RowUpdatingErrors() {
fx\src\data\System\Data\DataException.cs (6)
324static private DataException _Data(string error) { 325DataException e = new DataException(error); 332/// <exception cref="DataException">always thrown</exception> 335DataException e = new DataException(error, innerException); 1406/// <exception cref="DataException">always thrown</exception> 1432static public DataException ConvertFailed(Type type1, Type type2) {
fx\src\data\System\Data\DataRowView.cs (3)
69/// <exception cref="DataException"><see cref="System.Data.DataView.get_AllowEdit"/> when setting a value.</exception> 87/// <exception cref="DataException">Unmatched <paramref name="property"/> when setting a value.</exception> 88/// <exception cref="DataException"><see cref="System.Data.DataView.get_AllowEdit"/> when setting a value.</exception>
fx\src\data\System\Data\xmlsaver.cs (1)
1923/// <exception cref="DataException">if multipleTargetConverter throws or returns an empty result</exception>