Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Yuta HIGUCHI
2016-07-25 12:13:22 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f13b3df62ff0f0db9de719b9b2c70cb9d572d4ea
f13b3df6
1 parent
3e29f661
Fixing ConsistentMapException type.
Change-Id: I0f0fbf62a7a38e588a222bc2144f7c36cacd2dc6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
core/api/src/main/java/org/onosproject/store/primitives/DefaultConsistentTreeMap.java
core/api/src/main/java/org/onosproject/store/primitives/DefaultConsistentTreeMap.java
View file @
f13b3df
...
...
@@ -61,10 +61,10 @@ public class DefaultConsistentTreeMap<K, V> extends Synchronous<AsyncConsistentT
Thread
.
currentThread
().
interrupt
();
throw
new
ConsistentMapException
.
Interrupted
();
}
catch
(
ExecutionException
e
)
{
throw
new
ConsistentMapException
.
Timeout
();
}
catch
(
TimeoutException
e
)
{
Throwables
.
propagateIfPossible
(
e
.
getCause
());
throw
new
ConsistentMapException
(
e
.
getCause
());
}
catch
(
TimeoutException
e
)
{
throw
new
ConsistentMapException
.
Timeout
();
}
}
...
...
Please
register
or
login
to post a comment