Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
corpus2
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Analysers
corpus2
Commits
8d39b84d
Commit
8d39b84d
authored
13 years ago
by
Paweł Kędzia
Browse files
Options
Downloads
Patches
Plain Diff
try/catch exception in corpusreader
parent
455f2a2c
Branches
Branches containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libcorpus2_whole/io/corpusreader.cpp
+6
-2
6 additions, 2 deletions
libcorpus2_whole/io/corpusreader.cpp
libcorpus2_whole/io/corpusreader.h
+1
-1
1 addition, 1 deletion
libcorpus2_whole/io/corpusreader.h
with
7 additions
and
3 deletions
libcorpus2_whole/io/corpusreader.cpp
+
6
−
2
View file @
8d39b84d
...
...
@@ -13,8 +13,12 @@ CorpusReader::CorpusReader(const Tagset& tagset, const std::string& corpus_type)
boost
::
shared_ptr
<
Corpus
>
CorpusReader
::
read
(
const
std
::
string
&
corpus_file_path
)
{
boost
::
shared_ptr
<
CorpusReaderI
>
reader
=
this
->
get_corpus_reader_by_type
();
return
reader
->
read
(
corpus_file_path
);
try
{
boost
::
shared_ptr
<
CorpusReaderI
>
reader
=
this
->
get_corpus_reader_by_type
();
return
reader
->
read
(
corpus_file_path
);
}
catch
(...)
{
throw
;
}
}
//
...
...
This diff is collapsed.
Click to expand it.
libcorpus2_whole/io/corpusreader.h
+
1
−
1
View file @
8d39b84d
...
...
@@ -35,7 +35,7 @@ private:
private:
/// Type of corpus, sets only once in constructor
const
std
::
string
&
corpus_type_
;
const
std
::
string
corpus_type_
;
/// Tagset to use, sets only onece in constructor
const
Tagset
&
tagset_
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment