-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from sillydan1/dev
Release v1.4.0
- Loading branch information
Showing
59 changed files
with
1,920 additions
and
325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,3 @@ | |
[] | ||
] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,4 +63,3 @@ jobs: | |
gradle-version: current | ||
- name: build | ||
run: gradle build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -145,4 +145,3 @@ jobs: | |
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,4 +44,3 @@ metadata | |
|
||
# never commit this file | ||
donotcommit.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
core/src/main/java/dk/gtz/graphedit/exceptions/ExportException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package dk.gtz.graphedit.exceptions; | ||
|
||
/** | ||
* An error occurred during exporting to a non-graphedit format. | ||
*/ | ||
public class ExportException extends RuntimeException { | ||
/** | ||
* Construct a new instance with a message | ||
* @param message The detail message | ||
*/ | ||
public ExportException(String message) { | ||
super(message); | ||
} | ||
|
||
/** | ||
* Construct a new instance with a message and a cause | ||
* @param cause The cause | ||
*/ | ||
public ExportException(Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
/** | ||
* Construct a new instance with a message and a cause | ||
* @param message The detail message | ||
* @param cause The cause | ||
*/ | ||
public ExportException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
core/src/main/java/dk/gtz/graphedit/exceptions/ImportException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package dk.gtz.graphedit.exceptions; | ||
|
||
/** | ||
* An error occurred during importing from a non-graphedit format. | ||
*/ | ||
public class ImportException extends RuntimeException { | ||
/** | ||
* Construct a new instance with a message | ||
* @param message The detail message | ||
*/ | ||
public ImportException(String message) { | ||
super(message); | ||
} | ||
|
||
/** | ||
* Construct a new instance with a cause | ||
* @param cause The cause | ||
*/ | ||
public ImportException(Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
/** | ||
* Construct a new instance with a message and a cause | ||
* @param message The detail message | ||
* @param cause The cause | ||
*/ | ||
public ImportException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.