Skip to content

Commit

Permalink
new ValidationFailedException
Browse files Browse the repository at this point in the history
  • Loading branch information
Turini committed Feb 21, 2015
1 parent 5e969de commit dd953c4
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package br.com.caelum.vraptor.validator;

import javax.enterprise.inject.Vetoed;

import br.com.caelum.vraptor.VRaptorException;

@Vetoed
public class ValidationFailedException extends VRaptorException {

private static final long serialVersionUID = 3495204717080278982L;

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

0 comments on commit dd953c4

Please sign in to comment.