我想ContentIOException
从一个签名看起来像这样的方法中抛出一个。
public void putContent(InputStream is) throws ContentIOException.
当我尝试ContentIOException
像这样从 Mockito 抛出时:
when(StubbedObject.putContent(contentStream)).thenThrow(ContentIOException.class);
我收到以下编译错误:
The method when(T) in the type Mockito is not applicable for the arguments (void).
我究竟做错了什么?