InvalidAttributeNameException constructor

InvalidAttributeNameException(
  1. String attributeName
)

Error thrown when trying to convert an attribute that we either don't currently support or has no counterpart in avd.

Implementation

InvalidAttributeNameException(String attributeName)
    : super(
        'Attribute name `$attributeName` does not have a '
        'corresponding name in Android Vector Drawable conversion table.',
      );