jeter checked Exceptions se moque avec Mockito

J'essaie d'avoir un de mes moqué des objets de jeter un checked Exception lorsqu'une méthode est appelée. Je suis en train suivantes.

@Test(expectedExceptions = SomeException.class)
public void throwCheckedException() {
    List<String> list = mock(List.class);
    when(list.get(0)).thenThrow(new SomeException());
    String test = list.get(0);
}

public class SomeException extends Exception {
}

Cependant, que génère l'erreur suivante.

org.testng.TestException: 
Expected exception com.testing.MockitoCheckedExceptions$SomeException but got org.mockito.exceptions.base.MockitoException: 
Checked exception is invalid for this method!
Invalid: com.testing.MockitoCheckedExceptions$SomeException

À la recherche à la Mockito documentation, ils n'utilisent que RuntimeException, n'est-il pas possible de jeter checked Exceptions à partir d'un objet fantaisie avec Mockito?