home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Freeware / Programare / bluej / bluejsetup-200.exe / {app} / lib / swedish / exception.help < prev    next >
Encoding:
Text File  |  2004-09-15  |  3.2 KB  |  122 lines

  1. NullPointerException*
  2. Du f÷rs÷kte accessa ett objekt (antingen ett fΣlt
  3. i ett objekt eller ett objekts meddelande). Det gick
  4. inte pσ grund av att referensen du anvΣnde f÷r att
  5. nσ objektet var 'null'. Till exempel: Du skrev
  6. "thing.print()", and "thing" var 'null'.
  7.  
  8. ArithmeticException*
  9. Nσgot gick fel vid en aritmetisk operation,
  10. tex. division med 0.
  11.  
  12. StringIndexOutOfBoundsException*
  13. You have tried to access a character or a substring
  14. in a string , and the index you used does not exist
  15. in that string. For example, you may have tried to
  16. access the fifth character in a string that is only
  17. three characters long.
  18. For the substring operation, remember that the second
  19. parameter is the length of the substring, not the
  20. end index.
  21.  
  22. ClassCastException*
  23. You used a "cast" - that is an instruction assigning
  24. a different static type to an object, such as in this
  25. example:
  26.        (String)someObject
  27. Here, "someObject" is cast to "String". This is legal
  28. only if the object stored in someObject really is of
  29. type String.
  30. In other words: you can cast to type T only if the
  31. object you are casting is of type T or one of its
  32. subtypes. In your case it wasn't.
  33.  
  34. IndexOutOfBoundsException*
  35. An index of some sort (such as to an array, to a string,
  36. or to a vector) is out of range. "Out of range" means
  37. that the index does not exist in the array or other
  38. collection (e.g. you tried to access element 5, but only
  39. three elements exist).
  40.  
  41. ArrayIndexOutOfBoundsException*
  42. An array index is out of range. "Out of range" means
  43. that the index does not exist in the array (e.g. you
  44. tried to access element 5, but only three elements
  45. exist). The legal index range is 0..arraylength-1.
  46.  
  47. ConcurrentModificationException*
  48. You are doing an iteration over a collection here.
  49. While you are doing this, the collection was modified.
  50. That's a problem. You are not allowed to modify the
  51. collection during an iteration. Or the other way
  52. around: you cannot continue the iteration after
  53. modifying the collection. The only modification
  54. allowed during an iteration is removing elements with
  55. the Iterator's remove method (NOT the remove in the
  56. collection itself).
  57.  
  58. ArrayStoreException*
  59. No help available - sorry.
  60.  
  61. CannotRedoException*
  62. No help available - sorry.
  63.  
  64. CannotUndoException*
  65. No help available - sorry.
  66.  
  67. CMMException*
  68. No help available - sorry.
  69.  
  70. EmptyStackException*
  71. No help available - sorry.
  72.  
  73. IllegalArgumentException*
  74. No help available - sorry.
  75.  
  76. IllegalMonitorStateException*
  77. No help available - sorry.
  78.  
  79. IllegalPathStateException*
  80. No help available - sorry.
  81.  
  82. IllegalStateException*
  83. No help available - sorry.
  84.  
  85. ImagingOpException*
  86. No help available - sorry.
  87.  
  88. MissingResourceException*
  89. No help available - sorry.
  90.  
  91. NegativeArraySizeException*
  92. No help available - sorry.
  93.  
  94. NoSuchElementException*
  95. No help available - sorry.
  96.  
  97. ProfileDataException*
  98. No help available - sorry.
  99.  
  100. ProviderException*
  101. No help available - sorry.
  102.  
  103. RasterFormatException*
  104. No help available - sorry.
  105.  
  106. SecurityException*
  107. No help available - sorry.
  108.  
  109. SystemException*
  110. No help available - sorry.
  111.  
  112. UndeclaredThrowableException*
  113. No help available - sorry.
  114.  
  115. UnsupportedOperationException*
  116. No help available - sorry.
  117.  
  118. Exception
  119. Det hΣr Σr ett generellt undantag som bara
  120. anger att nσgot har gσtt fel. Jag har ingen
  121. aning om vad...
  122.