如果某个函数fun只会抛出异常类型A,则正确的函数原型声明语句是( )。
A、void fun( );
B、void fun( ) throw ( );
C、void fun( ) throw ( A );
D、void fun( ) throw A;