ExceptionEvent.html 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>The source code</title>
  6. <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
  7. <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
  8. <style type="text/css">
  9. .highlight { display: block; background-color: #ddd; }
  10. </style>
  11. <script type="text/javascript">
  12. function highlight() {
  13. document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
  14. }
  15. </script>
  16. </head>
  17. <body onload="prettyPrint(); highlight();">
  18. <pre class="prettyprint lang-js"><span id='Ext-direct-ExceptionEvent'>/**
  19. </span> * @class Ext.direct.ExceptionEvent
  20. * An event that is fired when an exception is received from a {@link Ext.direct.RemotingProvider}
  21. */
  22. Ext.define('Ext.direct.ExceptionEvent', {
  23. /* Begin Definitions */
  24. extend: 'Ext.direct.RemotingEvent',
  25. alias: 'direct.exception',
  26. /* End Definitions */
  27. status: false
  28. });
  29. </pre>
  30. </body>
  31. </html>