void verifyDoesNotEndWith(String value, String excluded) { if(value.endsWith(excluded)) { throwUsageError("Please do not add '$excluded' to the end of $value, AFib will add it for you"); } }