errors.js 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /**
  2. * DevExtreme (core/errors.js)
  3. * Version: 19.1.16
  4. * Build date: Tue Oct 18 2022
  5. *
  6. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  7. * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
  8. */
  9. "use strict";
  10. var errorUtils = require("./utils/error");
  11. module.exports = errorUtils({
  12. E0001: "Method is not implemented",
  13. E0002: "Member name collision: {0}",
  14. E0003: "A class must be instantiated using the 'new' keyword",
  15. E0004: "The NAME property of the component is not specified",
  16. E0005: "Unknown device",
  17. E0006: "Unknown endpoint key is requested",
  18. E0007: "'Invalidate' method is called outside the update transaction",
  19. E0008: "Type of the option name is not appropriate to create an action",
  20. E0009: "Component '{0}' has not been initialized for an element",
  21. E0010: "Animation configuration with the '{0}' type requires '{1}' configuration as {2}",
  22. E0011: "Unknown animation type '{0}'",
  23. E0012: "jQuery version is too old. Please upgrade jQuery to 1.10.0 or later",
  24. E0013: "KnockoutJS version is too old. Please upgrade KnockoutJS to 2.3.0 or later",
  25. E0014: "The 'release' method shouldn't be called for an unlocked Lock object",
  26. E0015: "Queued task returned an unexpected result",
  27. E0017: "Event namespace is not defined",
  28. E0018: "DevExpress.ui.DevExpressPopup widget is required",
  29. E0020: "Template engine '{0}' is not supported",
  30. E0021: "Unknown theme is set: {0}",
  31. E0022: "LINK[rel=DevExpress-theme] tags must go before DevExpress included scripts",
  32. E0023: "Template name is not specified",
  33. E0024: "DevExtreme bundle already included",
  34. E0025: "Unexpected argument type",
  35. E0100: "Unknown validation type is detected",
  36. E0101: "Misconfigured range validation rule is detected",
  37. E0102: "Misconfigured comparison validation rule is detected",
  38. E0110: "Unknown validation group is detected",
  39. E0120: "Adapter for a DevExpressValidator component cannot be configured",
  40. E0121: "The 'customItem' field of the 'onCustomItemCreating' function's parameter should contain a custom item or Promise that is resolved after the item is created.",
  41. W0000: "'{0}' is deprecated in {1}. {2}",
  42. W0001: "{0} - '{1}' option is deprecated in {2}. {3}",
  43. W0002: "{0} - '{1}' method is deprecated in {2}. {3}",
  44. W0003: "{0} - '{1}' property is deprecated in {2}. {3}",
  45. W0004: "Timeout for theme loading is over: {0}",
  46. W0005: "'{0}' event is deprecated in {1}. {2}",
  47. W0006: "Invalid recurrence rule: '{0}'",
  48. W0007: "'{0}' Globalize culture is not defined",
  49. W0008: "Invalid view name: '{0}'",
  50. W0009: "Invalid time zone name: '{0}'",
  51. W0010: "{0} is deprecated in {1}. {2}",
  52. W0011: "Number parsing is invoked while the parser is not defined",
  53. W0012: "Date parsing is invoked while the parser is not defined",
  54. W0013: "'{0}' file is deprecated in {1}. {2}",
  55. W0014: "{0} - '{1}' type is deprecated in {2}. {3}",
  56. W0015: "Instead of returning a value from the '{0}' function, write it into the '{1}' field of the function's parameter.",
  57. W0016: 'The "{0}" option does not accept the "{1}" value since v.{2}. {3}.'
  58. });