forked from ufcg-lsd/saps-dispatcher
-
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 ufcg-lsd#7 from ufcg-lsd/refactor/google-style
Refactored code based on Google style
- Loading branch information
Showing
25 changed files
with
1,549 additions
and
1,167 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 |
---|---|---|
|
@@ -3,3 +3,6 @@ | |
*.log* | ||
nohup.out | ||
saps-catalog.iml | ||
.classpath | ||
.project | ||
.settings/ |
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
9 changes: 5 additions & 4 deletions
9
src/main/java/saps/catalog/core/exceptions/CatalogException.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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
/* (C)2020 */ | ||
package saps.catalog.core.exceptions; | ||
|
||
public class CatalogException extends RuntimeException { | ||
|
||
private static final long serialVersionUID = -2520888793776997437L; | ||
private static final long serialVersionUID = -2520888793776997437L; | ||
|
||
public CatalogException(String msg) { | ||
super(msg); | ||
} | ||
public CatalogException(String msg) { | ||
super(msg); | ||
} | ||
} |
Oops, something went wrong.