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

com.ibm.fhir.model.generator.exception.FHIRGeneratorException Maven / Gradle / Ivy

/*
 * (C) Copyright IBM Corp. 2019
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package com.ibm.fhir.model.generator.exception;

import com.ibm.fhir.exception.FHIRException;

public class FHIRGeneratorException extends FHIRException {
    private static final long serialVersionUID = 1L;
    protected final String path;

    public FHIRGeneratorException(String message, String path, Throwable cause) {
        super(message, cause);
        this.path = path;
    }
    
    public String getPath() {
        return path;
    }
    
    @Override
    public String getMessage() {
        String message = super.getMessage();
        
        if (path != null && !path.isEmpty()) {
            message = message + " [" + path + "]";
        }
        
        return message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy