UnstableValidationException.java :  » Web-Framework » vraptor » org » vraptor » validator » Java Open Source

Java Open Source » Web Framework » vraptor 
vraptor » org » vraptor » validator » UnstableValidationException.java
package org.vraptor.validator;

import org.vraptor.LogicException;

/**
 * A validation method has thrown an exception. No validation method should
 * throw an exception instead, they should add errors to the result.
 * 
 * @author Guilherme Silveira
 */
public class UnstableValidationException extends LogicException {

  private static final long serialVersionUID = -5901912454471441100L;

  public UnstableValidationException(String message, Throwable cause) {
    super(message, cause);
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.