Skip to content

Package: IMAPReferralException

IMAPReferralException

nameinstructionbranchcomplexitylinemethod
IMAPReferralException(String, String)
M: 7 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 3 C: 0
0%
M: 1 C: 0
0%
getUrl()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*
2: * Copyright (c) 1997, 2023 Oracle and/or its affiliates. All rights reserved.
3: *
4: * This program and the accompanying materials are made available under the
5: * terms of the Eclipse Public License v. 2.0, which is available at
6: * http://www.eclipse.org/legal/epl-2.0.
7: *
8: * This Source Code may also be made available under the following Secondary
9: * Licenses when the conditions for such availability set forth in the
10: * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
11: * version 2 with the GNU Classpath Exception, which is available at
12: * https://www.gnu.org/software/classpath/license.html.
13: *
14: * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
15: */
16:
17: package org.eclipse.angus.mail.imap.protocol;
18:
19: import org.eclipse.angus.mail.iap.ProtocolException;
20:
21: /**
22: * A ProtocolException that includes IMAP login referral information.
23: *
24: * @since JavaMail 1.5.5
25: */
26:
27: public class IMAPReferralException extends ProtocolException {
28:
29: private String url;
30:
31: private static final long serialVersionUID = 2578770669364251968L;
32:
33: /**
34: * Constructs an IMAPReferralException with the specified detail message.
35: * and URL.
36: *
37: * @param s                the detail message
38: * @param url        the URL
39: */
40: public IMAPReferralException(String s, String url) {
41:         super(s);
42:         this.url = url;
43: }
44:
45: /**
46: * Return the IMAP URL in the referral.
47: *
48: * @return        the IMAP URL
49: */
50: public String getUrl() {
51:         return url;
52: }
53: }