Config
Table of Contents

Class

O.ValidationError

Represents an error in an attribute value of a record.

"use strict";

( function ( NS ) {

var ValidationError = function ( type, explanation ) {
 this.type = type;
 this.explanation = explanation;
};

ValidationError.REQUIRED = 1;
ValidationError.TOO_SHORT = 2;
ValidationError.TOO_LONG = 4;
ValidationError.INVALID_CHAR = 8;
ValidationError.FIRST_CUSTOM_ERROR = 16;

NS.ValidationError = ValidationError;

}( O ) );
Animation
Application
Core
DataStore
DOM
DragDrop
Foundation
IO
Localisation
Selection
Parser
TimeZones
Storage
Touch
CollectionViews
UA
ContainerViews
ControlViews
PanelViews
View