Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
vadere
vadere
Commits
750034d9
Commit
750034d9
authored
Feb 25, 2019
by
Benedikt Zoennchen
Browse files
replace InternalException by RuntimeException.
parent
776e2de8
Pipeline
#93544
failed with stages
in 23 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
VadereUtils/src/org/vadere/util/geometry/shapes/MPoint.java
View file @
750034d9
package
org.vadere.util.geometry.shapes
;
import
jdk.nashorn.internal.runtime.regexp.joni.exception.InternalException
;
public
class
MPoint
implements
IPoint
,
Cloneable
{
private
VPoint
point
;
private
int
hashCode
=
-
1
;
...
...
@@ -163,7 +161,7 @@ public class MPoint implements IPoint, Cloneable{
MPoint
clone
=
(
MPoint
)
super
.
clone
();
return
clone
;
}
catch
(
CloneNotSupportedException
e
)
{
throw
new
Internal
Exception
(
e
.
getMessage
());
throw
new
Runtime
Exception
(
e
.
getMessage
());
}
}
}
Write
Preview
Supports
Markdown
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!
Cancel
Please
register
or
sign in
to comment