stre.inc 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2000 by the Free Pascal development team
  5. This file implements english error message strings
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. {
  13. English string constants for any messages issued by the sysutils unit.
  14. Please have them ordered by constant name.
  15. }
  16. Const
  17. { Error messages for exceptions }
  18. SAbortError = 'Operation aborted';
  19. SAbstractError = 'Abstract method called';
  20. SAccessDenied = 'Access denied';
  21. SAccessViolation = 'Access violation';
  22. SArgumentMissing = 'Missing argument in format "%s"';
  23. SAssertError = '%s (%s, line %d)';
  24. SAssertionFailed = 'Assertion failed';
  25. SControlC = 'Control-C hit';
  26. SDiskFull = 'Disk Full';
  27. SDispatchError = 'No variant method call dispatch';
  28. SDivByZero = 'Division by zero';
  29. SEndOfFile = 'Read past end of file';
  30. SExceptionErrorMessage = 'exception at %p';
  31. SExternalException = 'External exception %x';
  32. SFileNotAssigned = 'File not assigned';
  33. SFileNotFound = 'File not found';
  34. SFileNotOpen = 'File not open';
  35. SFileNotOpenForInput = 'File not open for input';
  36. SFileNotOpenForOutput = 'File not open for output';
  37. SInValidFileName = 'Invalid filename';
  38. SIntfCastError = 'Interface not supported';
  39. SIntOverflow = 'Arithmetic overflow';
  40. SInvalidArgIndex = 'Invalid argument index in format "%s"';
  41. SInvalidBoolean = '"%s" is not a valid boolean.';
  42. SInvalidCast = 'Invalid type cast';
  43. SInvalidDateTime = '%f is not a valid date/time value.';
  44. SInvalidDrive = 'Invalid drive specified';
  45. SInvalidFileHandle = 'Invalid file handle';
  46. SInvalidFloat = '"%s" is an invalid float';
  47. SInvalidFormat = 'Invalid format specifier : "%s"';
  48. SInvalidGUID = '"%s" is not a valid GUID value';
  49. SInvalidInput = 'Invalid input';
  50. SInvalidInteger = '"%s" is an invalid integer';
  51. SInvalidOp = 'Invalid floating point operation';
  52. SInvalidPointer = 'Invalid pointer operation';
  53. SInvalidVarCast = 'Invalid variant type case';
  54. SInvalidVarOp = 'Invalid variant operation';
  55. SOutOfMemory = 'Out of memory';
  56. SOverflow = 'Floating point overflow';
  57. SPrivilege = 'Privileged instruction';
  58. SRangeError = 'Range check error';
  59. SSafecallException = 'Exception in safecall method';
  60. STooManyOpenFiles = 'Too many open files';
  61. SUnKnownRunTimeError = 'Unknown Run-Time error : %3.3d';
  62. SUnderflow = 'Floating point underflow';
  63. SUnknownErrorCode = 'Unknown error code: %d';
  64. SVarArrayBounds = 'Variant array bounds error';
  65. SVarArrayCreate = 'Variant array cannot be created';
  66. SVarNotArray = 'Variant doesn''t contain an array';
  67. {
  68. $Log$
  69. Revision 1.1 2003-10-06 21:01:06 peter
  70. * moved classes unit to rtl
  71. Revision 1.8 2003/01/01 20:58:07 florian
  72. + added invalid instruction exception
  73. Revision 1.7 2002/09/07 16:01:22 peter
  74. * old logs removed and tabs fixed
  75. Revision 1.6 2002/01/25 17:42:03 peter
  76. * interface helpers
  77. }