17 lines
353 B
JavaScript
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
|
|
}
|
|
});
|