All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bidib.wizard.common.exception.InternalStartupException Maven / Gradle / Ivy

package org.bidib.wizard.common.exception;

public class InternalStartupException extends RuntimeException implements UriAware {

    private static final long serialVersionUID = 1L;

    private String uri;

    private String connectionId;

    private String msgKey;

    public InternalStartupException(String message) {
        super(message);
    }

    public InternalStartupException(String message, String connectionId, String msgKey, String uri) {
        super(message);
        this.uri = uri;
        this.msgKey = msgKey;
        this.connectionId = connectionId;
    }

    /**
     * @return the uri
     */
    @Override
    public String getUri() {
        return uri;
    }

    /**
     * @return the connectionId
     */
    public String getConnectionId() {
        return connectionId;
    }

    /**
     * @param connectionId
     *            the connectionId to set
     */
    public void setConnectionId(String connectionId) {
        this.connectionId = connectionId;
    }

    /**
     * @return the msgKey
     */
    public String getMsgKey() {
        return msgKey;
    }

    /**
     * @param msgKey
     *            the msgKey to set
     */
    public void setMsgKey(String msgKey) {
        this.msgKey = msgKey;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy