KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > security > InputRequiredException


1 package com.sslexplorer.security;
2
3 import org.apache.struts.action.ActionForward;
4
5 public class InputRequiredException extends Exception JavaDoc {
6     
7     ActionForward forward;
8     
9     public InputRequiredException() {
10         
11     }
12     public InputRequiredException(ActionForward forward) {
13         this.forward = forward;
14     }
15     
16     public ActionForward getForward() {
17         return forward;
18     }
19 }
20
Popular Tags