diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-09-02 15:36:28 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-09-02 15:36:28 +0100 |
commit | d375986dae5a685ebd8f4d7d011d24a838608e75 (patch) | |
tree | 887ffe18afc9826eecc41e19d9cf19bd60e01fdf /offapi | |
parent | d1c18edd3fe5bafd9922d75e5626973197e4b78f (diff) |
coverity#707084 Uncaught exception
Change-Id: I89459f7a77fcb5785cfb2e8288326fce65202d9c
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/resource/XStringResourceWithLocation.idl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/offapi/com/sun/star/resource/XStringResourceWithLocation.idl b/offapi/com/sun/star/resource/XStringResourceWithLocation.idl index a905cdbfd3ad..3a5a215ba387 100644 --- a/offapi/com/sun/star/resource/XStringResourceWithLocation.idl +++ b/offapi/com/sun/star/resource/XStringResourceWithLocation.idl @@ -22,7 +22,6 @@ #include <com/sun/star/resource/XStringResourcePersistence.idl> - module com { module sun { module star { module resource { /** @@ -65,9 +64,13 @@ interface XStringResourceWithLocation: com::sun::star::resource::XStringResource @throws com::sun::star::lang::IllegalArgumentException if an empty string is passed as URL + + @throws com::sun::star::lang::NoSupportException + if the location is readonly */ void setURL( [in] string URL ) - raises( ::com::sun::star::lang::IllegalArgumentException ); + raises( ::com::sun::star::lang::IllegalArgumentException, + ::com::sun::star::lang::NoSupportException ); }; |