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

com.github.pmairif.weberknecht.request.actions.ActionNotFoundException Maven / Gradle / Ivy

Go to download

Yet another java web framework that wants to make web developers life a bit easier.

There is a newer version: 1.0.4
Show newest version
/*
 * ActionNotFoundException.java
 *
 * Copyright 2009 Patrick Mairif.
 * The program is distributed under the terms of the Apache License (ALv2).
 * 
 * created: 08.02.2009
 * tabstop=4, charset=UTF-8
 */
package com.github.pmairif.weberknecht.request.actions;

import com.github.pmairif.weberknecht.request.NotFoundException;

/**
 * Action not found.
 * 
 * @author pmairif
 */
@SuppressWarnings("serial")
public class ActionNotFoundException extends NotFoundException {

	public ActionNotFoundException() {
		super("action not found");
	}

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

    public ActionNotFoundException(String message, String resource) {
        super(message, resource);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy