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

ch.sbb.releasetrain.utils.exception.ReleasetrainException Maven / Gradle / Ivy

/*
 * Copyright (C) Schweizerische Bundesbahnen SBB, 2016.
 */
package ch.sbb.releasetrain.utils.exception;

/**
 * Releasetrain Exception
 * 
 * @author u203244 (Daniel Marthaler)
 * @since 0.0.1, 2016
 */
public class ReleasetrainException extends Exception {

    private static final long serialVersionUID = 1L;

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

    public ReleasetrainException(String message, Throwable e) {
        super(message, e);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy