diff --git a/core/java/android/view/ViewPropertyAnimator.java b/core/java/android/view/ViewPropertyAnimator.java index e6bf420acccc7..500dc161789a9 100644 --- a/core/java/android/view/ViewPropertyAnimator.java +++ b/core/java/android/view/ViewPropertyAnimator.java @@ -309,8 +309,8 @@ public class ViewPropertyAnimator { */ public ViewPropertyAnimator setStartDelay(long startDelay) { if (startDelay < 0) { - throw new IllegalArgumentException("Animators cannot have negative duration: " + - startDelay); + throw new IllegalArgumentException("Animators cannot have negative start " + + "delay: " + startDelay); } mStartDelaySet = true; mStartDelay = startDelay;