-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
29 additions
and
46 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
.../io/littlehorse/canary/app/Bootstrap.java → ...java/io/littlehorse/canary/Bootstrap.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
17 changes: 17 additions & 0 deletions
17
canary/src/main/java/io/littlehorse/canary/CanaryException.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,17 @@ | ||
package io.littlehorse.canary; | ||
|
||
public class CanaryException extends RuntimeException { | ||
public CanaryException() {} | ||
|
||
public CanaryException(String message) { | ||
super(message); | ||
} | ||
|
||
public CanaryException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public CanaryException(Throwable cause) { | ||
super(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
2 changes: 1 addition & 1 deletion
2
canary/src/main/java/io/littlehorse/canary/aggregator/AggregatorBootstrap.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
17 changes: 0 additions & 17 deletions
17
canary/src/main/java/io/littlehorse/canary/app/InitializationException.java
This file was deleted.
Oops, something went wrong.
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
17 changes: 0 additions & 17 deletions
17
canary/src/main/java/io/littlehorse/canary/kafka/MetricsEmitterException.java
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
canary/src/main/java/io/littlehorse/canary/metronome/MetronomeBootstrap.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
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