()
| 427 | * ASSERT: Must be called with this folder's synchronization lock held. |
| 428 | */ |
| 429 | protected void checkExists() throws MessagingException { |
| 430 | // If the boolean field 'exists' is false, check with the |
| 431 | // server by invoking exists() .. |
| 432 | if (!exists && !exists()) |
| 433 | throw new FolderNotFoundException( |
| 434 | this, fullName + " not found"); |
| 435 | } |
| 436 | |
| 437 | /* |
| 438 | * Ensure the folder is closed. |
no test coverage detected