Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
d42f3bfd
Commit
d42f3bfd
authored
Jul 26, 2019
by
Piotr Gawron
Browse files
unused class removed
parent
d5afea75
Changes
2
Hide whitespace changes
Inline
Side-by-side
model/src/main/java/lcsb/mapviewer/model/map/ElementInFewParentsException.java
deleted
100644 → 0
View file @
d5afea75
package
lcsb.mapviewer.model.map
;
/**
* Exception thrown when one element has more then one parent.
*
* @author Piotr Gawron
*
*/
public
class
ElementInFewParentsException
extends
Exception
{
/**
*
*/
private
static
final
long
serialVersionUID
=
1L
;
/**
* Default constructor with a message passed in the argument.
*
* @param message
* text message of this exception
*/
public
ElementInFewParentsException
(
String
message
)
{
super
(
message
);
}
}
model/src/test/java/lcsb/mapviewer/model/map/ElementInFewParentsExceptionTest.java
deleted
100644 → 0
View file @
d5afea75
package
lcsb.mapviewer.model.map
;
import
org.apache.commons.lang3.SerializationUtils
;
import
org.junit.*
;
import
lcsb.mapviewer.ModelTestFunctions
;
public
class
ElementInFewParentsExceptionTest
extends
ModelTestFunctions
{
@Before
public
void
setUp
()
throws
Exception
{
}
@After
public
void
tearDown
()
throws
Exception
{
}
@Test
public
void
testSerialization
()
{
SerializationUtils
.
serialize
(
new
ElementInFewParentsException
(
""
));
}
}
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