/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.govu.engine.render.exception;
/**
*
* @author Mehmet Ecevit
*/
public class ControllerNotFoundException extends Exception {
public ControllerNotFoundException(String message) {
super(message);
}
}