Skip to content
Snippets Groups Projects
ParseWeatherDataException.java 1.31 KiB
/*
 * Copyright (c) 2015 NIBIO <http://www.nibio.no/>. 
 * 
 * This file is part of VIPSLogic.
 * VIPSLogic is free software: you can redistribute it and/or modify
 * it under the terms of the NIBIO Open Source License as published by 
 * NIBIO, either version 1 of the License, or (at your option) any
 * later version.
 * 
 * VIPSLogic is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * NIBIO Open Source License for more details.
 * 
 * You should have received a copy of the NIBIO Open Source License
 * along with VIPSLogic.  If not, see <http://www.nibio.no/licenses/>.
 * 
 */

package no.nibio.vips.util.weather;

/**
 * @copyright 2015 <a href="http://www.nibio.no/">NIBIO</a>
 * @author Tor-Einar Skog <tor-einar.skog@nibio.no>
 */
public class ParseWeatherDataException extends Exception {

    /**
     * Creates a new instance of <code>ParseWeatherDataException</code> without detail message.
     */
    public ParseWeatherDataException() {
    }


    /**
     * Constructs an instance of <code>ParseWeatherDataException</code> with the specified detail message.
     * @param msg the detail message.
     */
    public ParseWeatherDataException(String msg) {
        super(msg);
    }
}