Package org.apache.james.imap.decode

Source Code of org.apache.james.imap.decode.DecodingException

/****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one   *
* or more contributor license agreements.  See the NOTICE file *
* distributed with this work for additional information        *
* regarding copyright ownership.  The ASF licenses this file   *
* to you under the Apache License, Version 2.0 (the            *
* "License"); you may not use this file except in compliance   *
* with the License.  You may obtain a copy of the License at   *
*                                                              *
*   http://www.apache.org/licenses/LICENSE-2.0                 *
*                                                              *
* Unless required by applicable law or agreed to in writing,   *
* software distributed under the License is distributed on an  *
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY       *
* KIND, either express or implied.  See the License for the    *
* specific language governing permissions and limitations      *
* under the License.                                           *
****************************************************************/

package org.apache.james.imap.decode;

import java.io.IOException;

import org.apache.james.imap.api.display.HumanReadableText;

/**
* <p>
* Indicates that decoding failured.
* </p>
* <p>
* All decoding exception should be supplied with:
* </p>
* <ul>
* <li>A finely grained descriptive string</li>
* <li>A coursely grained key for i18n</li>
* </ul>
* <p>
* The following keys are frequently used when decoding:
* </p>
* <ul>
* <li>{@link HumanReadableText#ILLEGAL_ARGUMENTS}</li>
* <li>{@link HumanReadableText#BAD_IO_ENCODING}</li>
* </ul>
*/
public class DecodingException extends IOException {

    private static final long serialVersionUID = 8719349386686261422L;

    private final HumanReadableText key;

    private Throwable t;

    /**
     * Constructs a decoding exception
     *
     * @param key
     *            coursely grained i18n, not null
     * @param s
     *            specific description suitable for logging, not null
     */
    public DecodingException(final HumanReadableText key, final String s) {
        super(s);
        this.key = key;
    }

    /**
     * Constructs a decoding exception.
     *
     * @param key
     *            coursely grained i18n, not null
     * @param s
     *            specific description suitable for logging, not null
     * @param t
     *            cause, not null
     */
    public DecodingException(final HumanReadableText key, final String s, final Throwable t) {
        super(s);
        this.key = key;
        this.t = t;
    }

    /**
     * Gets the message key.
     *
     * @return the key, not null
     */
    public final HumanReadableText getKey() {
        final HumanReadableText key;
        if (this.key == null) {
            // API specifies not null but best to default to generic message
            key = HumanReadableText.ILLEGAL_ARGUMENTS;
        } else {
            key = this.key;
        }
        return key;
    }

    public Throwable getCause() {
        return t;
    }

}
TOP

Related Classes of org.apache.james.imap.decode.DecodingException

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.