Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
vadere
vadere
Commits
fe4c839e
Commit
fe4c839e
authored
Oct 11, 2018
by
Stefan Schuhbaeck
Browse files
remove wrong exception
parent
2d44e5e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
VadereSimulator/src/org/vadere/simulator/projects/migration/IncidentMigrationAssistant.java
View file @
fe4c839e
...
...
@@ -11,7 +11,6 @@ import org.vadere.simulator.projects.migration.incidents.VersionBumpIncident;
import
org.vadere.state.util.StateJsonConverter
;
import
org.vadere.util.io.IOUtils
;
import
sun.reflect.generics.reflectiveObjects.NotImplementedException
;
import
java.io.File
;
import
java.io.IOException
;
...
...
@@ -74,18 +73,18 @@ public class IncidentMigrationAssistant extends MigrationAssistant {
@Override
public
String
convertFile
(
Path
scenarioFilePath
,
Version
targetVersion
)
{
throw
new
NotImplemented
Exception
(
);
throw
new
RuntimeException
(
"
Not
Implemented
"
);
}
@Override
public
void
migrateFile
(
Path
scenarioFilePath
,
Version
targetVersion
,
Path
outputFile
)
{
throw
new
NotImplemented
Exception
(
);
throw
new
RuntimeException
(
"
Not
Implemented
"
);
}
@Override
public
void
revertFile
(
Path
scenarioFile
)
{
throw
new
NotImplemented
Exception
(
);
throw
new
RuntimeException
(
"
Not
Implemented
"
);
}
// if isScenario is false, its output
...
...
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