Example usage for org.springframework.dao PessimisticLockingFailureException PessimisticLockingFailureException

List of usage examples for org.springframework.dao PessimisticLockingFailureException PessimisticLockingFailureException

Introduction

In this page you can find the example usage for org.springframework.dao PessimisticLockingFailureException PessimisticLockingFailureException.

Prototype

public PessimisticLockingFailureException(String msg) 

Source Link

Document

Constructor for PessimisticLockingFailureException.

Usage

From source file:org.terasoluna.gfw.functionaltest.app.exceptionhandling.ExceptionHandlingController.java

@RequestMapping(value = "2_5", method = RequestMethod.GET)
public String useCaseControllerHandling_02_05() {

    exceptionHandlingService.throwException(new PessimisticLockingFailureException("2_5 ignore logging"));

    return "exceptionhandling/index";
}