| %line | %branch | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| org.demosys.web.user.InvalidUserException |
|
|
| 1 | /* |
|
| 2 | * Demosys. |
|
| 3 | * |
|
| 4 | * Terms of license - http://opensource.org/licenses/apachepl.php |
|
| 5 | */ |
|
| 6 | package org.demosys.web.user; |
|
| 7 | import org.apache.struts.action.ActionErrors; |
|
| 8 | /** |
|
| 9 | * Bad User Data. |
|
| 10 | */ |
|
| 11 | public class InvalidUserException extends Exception { |
|
| 12 | private ActionErrors _errors; |
|
| 13 | ||
| 14 | 24 | public InvalidUserException(ActionErrors errors) { |
| 15 | 24 | _errors = errors; |
| 16 | 24 | } |
| 17 | ||
| 18 | public ActionErrors getErrors() { |
|
| 19 | 20 | return _errors; |
| 20 | } |
|
| 21 | } |
| This report is generated by jcoverage, Maven and Maven JCoverage Plugin. |