Exercise List: Incorporating OOP Style Form Validation

<!--- 
	Before we save the exercise information, let's double check 
	to make sure that it is valid.
--->
<cfif THIS.ValidateSave( ARGUMENTS.Exercise ).HasErrors()>
	 
	<!--- 
		There were errors to exit this method and return false 
		to indicate that the save was not successful.
	--->
	<cfreturn false />
	 
</cfif>

For Cut-and-Paste