Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bebcb1ff authored by shamim-emon's avatar shamim-emon
Browse files

refactor: convert imapResponseParserException class from java to kotlin

parent 8cca5c05
Loading
Loading
Loading
Loading
+5 −11
Original line number Diff line number Diff line
package com.fsck.k9.mail.store.imap;
package com.fsck.k9.mail.store.imap


public class ImapResponseParserException extends RuntimeException {
    public ImapResponseParserException(String message) {
        super(message);
    }

    public ImapResponseParserException(String message, Throwable cause) {
        super(message, cause);
    }
}
class ImapResponseParserException @JvmOverloads constructor(
    override val message: String? = null,
    override val cause: Throwable? = null,
) : RuntimeException(message, cause)