// License: GPL. For details, see LICENSE file.
package org.openstreetmap.josm.io;

public class IllegalDataException extends Exception{

    public IllegalDataException() {
        super();
        // TODO Auto-generated constructor stub
    }

    public IllegalDataException(String message, Throwable cause) {
        super(message, cause);
        // TODO Auto-generated constructor stub
    }

    public IllegalDataException(String message) {
        super(message);
        // TODO Auto-generated constructor stub
    }

    public IllegalDataException(Throwable cause) {
        super(cause);
        // TODO Auto-generated constructor stub
    }

}
