Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
uniset2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UniSet project repositories
uniset2
Commits
c746236f
Commit
c746236f
authored
Jun 24, 2021
by
Pavel Vainerman
Committed by
Pavel Vainerman
Jun 30, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[repository]: error processing
parent
9674dd51
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
Exceptions.h
include/Exceptions.h
+1
-1
UniSetObject.cc
src/Core/UniSetObject.cc
+2
-1
No files found.
include/Exceptions.h
View file @
c746236f
...
...
@@ -46,7 +46,7 @@ namespace uniset
{
public
:
Exception
(
const
std
::
string
&
txt
)
noexcept
:
text
(
txt
.
c_str
()
)
{}
Exception
(
const
std
::
string
&
txt
)
noexcept
:
text
(
txt
)
{}
Exception
()
noexcept
:
text
(
"Exception"
)
{}
virtual
~
Exception
()
noexcept
(
true
)
{}
...
...
src/Core/UniSetObject.cc
View file @
c746236f
...
...
@@ -267,7 +267,8 @@ namespace uniset
}
catch
(
const
uniset
::
ORepFailed
&
ex
)
{
uwarn
<<
myname
<<
"(registration): don`t registration in object reposotory "
<<
endl
;
uwarn
<<
myname
<<
"(registration): don`t registration in object reposotory "
<<
" err: "
<<
ex
<<
endl
;
}
catch
(
const
uniset
::
Exception
&
ex
)
{
...
...
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