Package br.com.caelum.vraptor.controller

Examples of br.com.caelum.vraptor.controller.InvalidInputException


    verify(interceptorStack, never()).start();
  }
 
  @Test
  public void shouldHandle400() throws Exception {
    InvalidInputException invalidInputException = new InvalidInputException("");
    when(translator.translate(webRequest)).thenThrow(invalidInputException);
    observer.handle(requestStarted);
    verify(interceptorStack, never()).start();
    verify(invalidInputHandler).deny(invalidInputException);
  }
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.controller.InvalidInputException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.