-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: move
ParselyNotInitializedException
message to exception itself
To align with other exception and move responsibility from `ParselyTracker`
- Loading branch information
Showing
2 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
3 changes: 2 additions & 1 deletion
3
parsely/src/main/java/com/parsely/parselyandroid/ParselyNotInitializedException.kt
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,3 +1,4 @@ | ||
package com.parsely.parselyandroid | ||
|
||
public class ParselyNotInitializedException(override val message: String?) : Exception() | ||
public class ParselyNotInitializedException() : | ||
Exception("Parse.ly client has not been initialized. Call ParselyTracker#init before using the SDK.") |
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