web-apps/vendor/touch/src/direct/ExceptionEvent.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -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
}
});