7 types derived from EntityException
System.Data.Entity (7)
System\Data\EntityCommandCompilationException.cs (1)
26public sealed class EntityCommandCompilationException : EntityException {
System\Data\EntityCommandExecutionException.cs (1)
26public sealed class EntityCommandExecutionException : EntityException {
System\Data\EntitySqlException.cs (1)
31public sealed class EntitySqlException : EntityException
System\Data\InternalMappingException.cs (1)
22internal class InternalMappingException : EntityException {
System\Data\MappingException.cs (1)
21public sealed class MappingException : EntityException
System\Data\MetadataException.cs (1)
20public sealed class MetadataException : EntityException
System\Data\ProviderIncompatibleException.cs (1)
21public sealed class ProviderIncompatibleException : EntityException
2 instantiations of EntityException
System.Data.Entity (2)
System\Data\Common\EntityUtil.cs (2)
494return new EntityException(error); 503return new EntityException(message, inner);
18 references to EntityException
System.Data.Entity (18)
System\Data\Common\EntitySql\AST\Literal.cs (5)
100/// <exception cref="System.Data.EntityException"></exception> 114/// <exception cref="System.Data.EntityException"></exception> 128/// <exception cref="System.Data.EntityException"></exception> 166/// <exception cref="System.Data.EntityException"></exception> 182/// <exception cref="System.Data.EntityException"></exception>
System\Data\Common\EntitySql\AST\QueryParameter.cs (1)
25/// <exception cref="System.Data.EntityException">Thrown if the parameter name does not conform to the expected format</exception>
System\Data\Common\EntitySql\CqlParserHelpers.cs (1)
51/// <exception cref="System.Data.EntityException">Thrown when Syntatic rules are violated and the query cannot be accepted</exception>
System\Data\Common\EntitySql\CqlQuery.cs (5)
53/// <exception cref="System.Data.EntityException">Thrown when Syntatic or Semantic rules are violated and the query cannot be accepted</exception> 91/// <exception cref="System.Data.EntityException">Thrown when Syntatic or Semantic rules are violated and the query expression cannot be accepted</exception> 129/// <exception cref="System.Data.EntityException">Thrown when Syntatic or Semantic rules are violated and the query cannot be accepted</exception> 201/// <exception cref="System.Data.EntityException">Thrown when Syntatic or Semantic rules are violated and the query cannot be accepted.</exception> 237/// <exception cref="System.Data.EntityException">Thrown when Syntatic or Semantic rules are violated and the query cannot be accepted.</exception>
System\Data\Common\EntitySql\SemanticAnalyzer.cs (2)
49/// <exception cref="System.Data.EntityException">Thrown when Syntatic or Semantic rules are violated and the query cannot be accepted</exception> 82/// <exception cref="System.Data.EntityException">Thrown when Syntatic or Semantic rules are violated and the query cannot be accepted</exception>
System\Data\Common\EntityUtil.cs (4)
493static internal EntityException Provider(string error) { 496static internal EntityException Provider(Exception inner) { 499static internal EntityException Provider(string parameter, Exception inner) { 502static internal EntityException ProviderExceptionWithMessage(string message, Exception inner) {