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

net.jakubec.view.ViewException Maven / Gradle / Ivy

package net.jakubec.view;

import net.jakubec.view.exception.BasicException;

public class ViewException extends BasicException {

	public static int DELETE_FAILED = 1;

	public static int OPEN_FAILED = 2;

	public static final int SAVE_FAILED = 3;

	public ViewException(final int value) {
		super(value);

	}

	public ViewException(Exception e, int value ) {
		super(e, value);

	}

	@Override
	public String getBasicString() {
		return "view.exception";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy