Get the specified message.
(int msgnum)
| 1839 | * Get the specified message. |
| 1840 | */ |
| 1841 | @Override |
| 1842 | public synchronized Message getMessage(int msgnum) |
| 1843 | throws MessagingException { |
| 1844 | checkOpened(); |
| 1845 | checkRange(msgnum); |
| 1846 | |
| 1847 | return messageCache.getMessage(msgnum); |
| 1848 | } |
| 1849 | |
| 1850 | /** |
| 1851 | * {@inheritDoc} |
no test coverage detected