Files
DocumentServer-v-9.2.0/OfficeWeb/vendor/touch/src/direct/ExceptionEvent.js
2015-04-28 17:59:00 +03:00

17 lines
353 B
JavaScript

/**
* @class Ext.direct.ExceptionEvent
* An event that is fired when an exception is received from a {@link Ext.direct.RemotingProvider}
*/
Ext.define('Ext.direct.ExceptionEvent', {
extend: 'Ext.direct.RemotingEvent',
alias: 'direct.exception',
config: {
status: false,
name: 'exception',
error: null
}
});