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.
Refactored code according to Google Java Style
- Loading branch information
1 parent
b72ec95
commit 490658d
Showing
23 changed files
with
1,493 additions
and
1,165 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
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); | ||
} | ||
} |
11 changes: 6 additions & 5 deletions
11
src/main/java/saps/catalog/core/exceptions/TaskNotFoundException.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 TaskNotFoundException extends RuntimeException { | ||
|
||
private static final long serialVersionUID = -2520888793776997437L; | ||
private static final long serialVersionUID = -2520888793776997437L; | ||
|
||
public TaskNotFoundException(String msg) { | ||
super(msg); | ||
} | ||
} | ||
public TaskNotFoundException(String msg) { | ||
super(msg); | ||
} | ||
} |
9 changes: 5 additions & 4 deletions
9
src/main/java/saps/catalog/core/exceptions/UserNotFoundException.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 UserNotFoundException extends RuntimeException { | ||
|
||
private static final long serialVersionUID = -2520888793776997437L; | ||
private static final long serialVersionUID = -2520888793776997437L; | ||
|
||
public UserNotFoundException(String msg) { | ||
super(msg); | ||
} | ||
public UserNotFoundException(String msg) { | ||
super(msg); | ||
} | ||
} |
Oops, something went wrong.