DynamicValidator.ValidateException(Exception) Method

Definition

Sets up a validation exception if an exception occurs in the data model.

protected:
 virtual void ValidateException(Exception ^ exception);
protected virtual void ValidateException (Exception exception);
abstract member ValidateException : Exception -> unit
override this.ValidateException : Exception -> unit
Protected Overridable Sub ValidateException (exception As Exception)

Parameters

exception
Exception

The exception that is thrown.

Remarks

This method is called when an exception is thrown. A column-specific validator fails when a validation exception contains an associated inner exception, but a global validator fail when a non-validation exception occurs.

Note

Only use this method if the exception is a ValidationException. If the exception is caused by a database error, using this method can display a sensitive database error

Applies to