gpt4 book ai didi

java - 如何创建 org.springframework.dao.DataAccessException 实例?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:39:54 25 4
gpt4 key购买 nike

我需要创建 JUnit 测试来处理 DataAccessException,

但是当我尝试时:

            throw new DataAccessException();

接收:

 Cannot instantiate the type DataAccessException

为什么?我能做什么?谢谢。

最佳答案

DataAccessException 是抽象类,无法实例化。而是使用具体类之一,例如 new DataRetreivalFailureException("this was the reason") 或创建您自己的类:

throw new DataAccessException("this was the reason") {};

然后您会得到一个派生自 DataAccessException 的匿名类。

关于java - 如何创建 org.springframework.dao.DataAccessException 实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11178728/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com