Breeze.Entities.EntityErrorsException.EntityErrorsException C# (CSharp) Method

EntityErrorsException() public method

public EntityErrorsException ( IEnumerable entityErrors ) : Newtonsoft.Json
entityErrors IEnumerable
return Newtonsoft.Json
        public EntityErrorsException(IEnumerable<EntityError> entityErrors)
        {
            EntityErrors = entityErrors.ToList();
            StatusCode = HttpStatusCode.Forbidden;
        }

Same methods

EntityErrorsException::EntityErrorsException ( String message, IEnumerable entityErrors ) : Newtonsoft.Json
EntityErrorsException