stre.inc 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. SAbstractError = 'Abstract method called';
  19. SAccessDenied = 'Access denied';
  20. SAccessViolation = 'Access violation';
  21. SArgumentMissing = 'Missing argument in format "%s"';
  22. SAssertError = '%s (%s, line %d)';
  23. SAssertionFailed = 'Assertion failed';
  24. SDiskFull = 'Disk Full';
  25. SDivByZero = 'Division by zero';
  26. SEndOfFile = 'Read past end of file';
  27. SFileNotFound = 'File not found';
  28. SFileNotAssigned = 'File not assigned';
  29. SFileNotOpen = 'File not open';
  30. SFileNotOpenForInput = 'File not open for input';
  31. SFileNotOpenForOutput = 'File not open for output';
  32. SInvalidArgIndex = 'Invalid argument index in format "%s"';
  33. SInvalidDrive = 'Invalid drive specified';
  34. SInvalidFileHandle = 'Invalid file handle';
  35. SInValidFileName = 'Invalid filename';
  36. SInvalidFloat = '"%s" is an invalid float';
  37. SInvalidFormat = 'Invalid format specifier : "%s"';
  38. SInvalidInput = 'Invalid input';
  39. SInvalidInteger = '"%s" is an invalid integer';
  40. SInvalidPointer = 'Invalid pointer operation';
  41. SOutOfMemory = 'Out of memory';
  42. SRangeError = 'Range check error';
  43. SInvalidCast = 'Invalid type cast';
  44. STooManyOpenFiles = 'Too many open files';
  45. SUnKnownRunTimeError = 'Unknown Run-Time error : %3.3d';
  46. SOverflow = 'Floating point overflow';
  47. SUnderflow = 'Floating point underflow';
  48. SIntOverflow = 'Arithmetic overflow';
  49. SInvalidOp = 'Invalid floating point operation';
  50. {
  51. $Log$
  52. Revision 1.9 2000-01-07 16:41:44 daniel
  53. * copyright 2000
  54. Revision 1.8 1999/08/28 14:53:27 florian
  55. * bug 471 fixed: run time error 2 is now converted into a file not
  56. found exception
  57. Revision 1.7 1999/07/02 17:03:22 florian
  58. + added some runtime->excpetin wrappers: eintoverflow, eoverflow, eunderflow, einvalidop
  59. Revision 1.6 1999/06/19 07:39:46 michael
  60. Implemented strtofloat
  61. Revision 1.5 1998/10/10 09:53:09 michael
  62. Added assertion handling
  63. Revision 1.4 1998/10/03 15:08:04 florian
  64. * EInvalidCast added (from runerror 219)
  65. Revision 1.3 1998/10/02 13:57:37 michael
  66. Format error now causes exception
  67. Revision 1.2 1998/10/02 13:00:09 michael
  68. + More RTL error handling
  69. Revision 1.1 1998/10/01 16:04:59 michael
  70. + Initial implementation
  71. }