Example usage for org.apache.ibatis.exceptions PersistenceException PersistenceException

List of usage examples for org.apache.ibatis.exceptions PersistenceException PersistenceException

Introduction

In this page you can find the example usage for org.apache.ibatis.exceptions PersistenceException PersistenceException.

Prototype

public PersistenceException() 

Source Link

Usage

From source file:org.apache.aurora.scheduler.storage.db.DbStorageTest.java

License:Apache License

@Test(expected = StorageException.class)
public void testReadFails() {
    expect(readWork.apply(EasyMock.anyObject())).andThrow(new PersistenceException());

    control.replay();/*from w  w w . j  a  va  2s . c  o m*/

    storage.read(readWork);
}