Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
f8226e87
Kaydet (Commit)
f8226e87
authored
Tem 09, 2014
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Pass a useful exception message.
Change-Id: Idde024a7b6896571d159c3983ef1985fa12d0c5a
üst
9c3dec47
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
storagehelper.cxx
comphelper/source/misc/storagehelper.cxx
+8
-1
No files found.
comphelper/source/misc/storagehelper.cxx
Dosyayı görüntüle @
f8226e87
...
@@ -45,6 +45,7 @@
...
@@ -45,6 +45,7 @@
#include <comphelper/storagehelper.hxx>
#include <comphelper/storagehelper.hxx>
#include <boost/current_function.hpp>
using
namespace
::
com
::
sun
::
star
;
using
namespace
::
com
::
sun
::
star
;
...
@@ -274,7 +275,13 @@ sal_Int32 OStorageHelper::GetXStorageFormat(
...
@@ -274,7 +275,13 @@ sal_Int32 OStorageHelper::GetXStorageFormat(
else
else
{
{
// the mediatype is not known
// the mediatype is not known
throw
beans
::
IllegalTypeException
();
OUString
aMsg
(
BOOST_CURRENT_FUNCTION
);
aMsg
+=
":"
;
aMsg
+=
OUString
::
number
(
__LINE__
);
aMsg
+=
": unknown media type '"
;
aMsg
+=
aMediaType
;
aMsg
+=
"'"
;
throw
beans
::
IllegalTypeException
(
aMsg
);
}
}
return
nResult
;
return
nResult
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment