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

net.sourceforge.plantuml.tim.EaterExceptionLocated Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.tim;

import java.util.Objects;

import net.sourceforge.plantuml.text.StringLocated;

public class EaterExceptionLocated extends Exception {

	private final String message;
	private final StringLocated location;

	private EaterExceptionLocated(String message, StringLocated location) {
		this.message = message;
		this.location = location;
	}

	public static EaterExceptionLocated located(String message, StringLocated location) {
		return new EaterExceptionLocated(message, Objects.requireNonNull(location));
	}

	public final String getMessage() {
		return message;
	}

	public final StringLocated getLocation() {
		return location;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy