stre.inc 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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.10 2000-02-09 16:59:32 peter
  53. * truncated log
  54. Revision 1.9 2000/01/07 16:41:44 daniel
  55. * copyright 2000
  56. Revision 1.8 1999/08/28 14:53:27 florian
  57. * bug 471 fixed: run time error 2 is now converted into a file not
  58. found exception
  59. }