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

Unverified Commit aa2dcfd9 authored by Wolf-Martell Montwé's avatar Wolf-Martell Montwé Committed by GitHub
Browse files

Merge pull request #9293 from shamim-emon/fix-issue-9292

Convert ImapResponseParserException class from java to kotlin
parents dc3d2703 bebcb1ff
Loading
Loading
Loading
Loading
+0 −12
Original line number Original line Diff line number Diff line
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);
    }
}
+6 −0
Original line number Original line Diff line number Diff line
package com.fsck.k9.mail.store.imap

class ImapResponseParserException @JvmOverloads constructor(
    override val message: String? = null,
    override val cause: Throwable? = null,
) : RuntimeException(message, cause)