Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
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
sispub
openbis
Commits
7a8d6c36
Commit
7a8d6c36
authored
17 years ago
by
ribeaudc
Browse files
Options
Downloads
Patches
Plain Diff
change: - Allow null as parameter.
SVN: 4467
parent
2d6447d1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/source/java/ch/systemsx/cisd/common/exceptions/CheckedExceptionTunnel.java
+9
-11
9 additions, 11 deletions
...stemsx/cisd/common/exceptions/CheckedExceptionTunnel.java
with
9 additions
and
11 deletions
common/source/java/ch/systemsx/cisd/common/exceptions/CheckedExceptionTunnel.java
+
9
−
11
View file @
7a8d6c36
...
...
@@ -43,18 +43,17 @@ public final class CheckedExceptionTunnel extends RuntimeException
* {@link RuntimeException}, itself is returned, otherwise a {@link CheckedExceptionTunnel} with <var>exception</var>
* as checked exception argument.
*
* @param exception The exception to represent by the return value.
* @param exception
OrNull
The exception to represent by the return value.
* @return A {@link RuntimeException} representing the <var>exception</var>.
*/
public
final
static
RuntimeException
wrapIfNecessary
(
final
Exception
exception
)
public
final
static
RuntimeException
wrapIfNecessary
(
final
Exception
exception
OrNull
)
{
assert
exception
!=
null
:
"Unspecified exception."
;
if
(
exception
instanceof
RuntimeException
)
if
(
exceptionOrNull
instanceof
RuntimeException
)
{
return
(
RuntimeException
)
exception
;
return
(
RuntimeException
)
exception
OrNull
;
}
else
{
return
new
CheckedExceptionTunnel
(
exception
);
return
new
CheckedExceptionTunnel
(
exception
OrNull
);
}
}
...
...
@@ -62,16 +61,15 @@ public final class CheckedExceptionTunnel extends RuntimeException
* Returns the original exception before being wrapped, if the exception has been wrapped, or <var>exception</var>
* otherwise.
*/
public
final
static
Exception
unwrapIfNecessary
(
final
Runtime
Exception
exception
)
public
final
static
Exception
unwrapIfNecessary
(
final
Exception
exception
OrNull
)
{
assert
exception
!=
null
:
"Unspecified exception."
;
if
(
exception
instanceof
CheckedExceptionTunnel
)
if
(
exceptionOrNull
instanceof
CheckedExceptionTunnel
)
{
// We are sur that the wrapped exception is an 'Exception'.
return
(
Exception
)
exception
.
getCause
();
return
(
Exception
)
exception
OrNull
.
getCause
();
}
else
{
return
exception
;
return
exception
OrNull
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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