List of usage examples for org.apache.ibatis.exceptions PersistenceException PersistenceException
public PersistenceException()
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); }