Skip to content

Commit

Permalink
Merge pull request #603 from aj019/Toast_Fix
Browse files Browse the repository at this point in the history
Fix: Toast Message not correct #596
  • Loading branch information
therajanmaurya authored Mar 28, 2017
2 parents 553684b + 728ba5b commit ec28205
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import android.widget.Toast;

public class InvalidTextInputException extends Exception {
public static final String TYPE_ALPHABETS = "ALPHABETS";
public static final String TYPE_ALPHABETS = "Alphabets";
private String fieldInput;
private String localisedErrorMessage;
private String inputType;
Expand All @@ -23,7 +23,7 @@ public InvalidTextInputException(String fieldInput, String localisedErrorMessage

@Override
public String toString() {
return fieldInput + "" + localisedErrorMessage + inputType;
return fieldInput + " " + localisedErrorMessage + " " + inputType;
}


Expand Down

0 comments on commit ec28205

Please sign in to comment.