RuntimeError-2109023a.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /**
  2. * Cesium - https://github.com/CesiumGS/cesium
  3. *
  4. * Copyright 2011-2020 Cesium Contributors
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. *
  18. * Columbus View (Pat. Pend.)
  19. *
  20. * Portions licensed separately.
  21. * See https://github.com/CesiumGS/cesium/blob/master/LICENSE.md for full licensing details.
  22. */
  23. define(['exports', './when-54c2dc71'], function (exports, when) { 'use strict';
  24. /**
  25. * Constructs an exception object that is thrown due to an error that can occur at runtime, e.g.,
  26. * out of memory, could not compile shader, etc. If a function may throw this
  27. * exception, the calling code should be prepared to catch it.
  28. * <br /><br />
  29. * On the other hand, a {@link DeveloperError} indicates an exception due
  30. * to a developer error, e.g., invalid argument, that usually indicates a bug in the
  31. * calling code.
  32. *
  33. * @alias RuntimeError
  34. * @constructor
  35. * @extends Error
  36. *
  37. * @param {String} [message] The error message for this exception.
  38. *
  39. * @see DeveloperError
  40. */
  41. function RuntimeError(message) {
  42. /**
  43. * 'RuntimeError' indicating that this exception was thrown due to a runtime error.
  44. * @type {String}
  45. * @readonly
  46. */
  47. this.name = "RuntimeError";
  48. /**
  49. * The explanation for why this exception was thrown.
  50. * @type {String}
  51. * @readonly
  52. */
  53. this.message = message;
  54. //Browsers such as IE don't have a stack property until you actually throw the error.
  55. var stack;
  56. try {
  57. throw new Error();
  58. } catch (e) {
  59. stack = e.stack;
  60. }
  61. /**
  62. * The stack trace of this exception, if available.
  63. * @type {String}
  64. * @readonly
  65. */
  66. this.stack = stack;
  67. }
  68. if (when.defined(Object.create)) {
  69. RuntimeError.prototype = Object.create(Error.prototype);
  70. RuntimeError.prototype.constructor = RuntimeError;
  71. }
  72. RuntimeError.prototype.toString = function () {
  73. var str = this.name + ": " + this.message;
  74. if (when.defined(this.stack)) {
  75. str += "\n" + this.stack.toString();
  76. }
  77. return str;
  78. };
  79. exports.RuntimeError = RuntimeError;
  80. });
  81. //# sourceMappingURL=RuntimeError-2109023a.js.map