// Check for illegal characters in breakpoint source.
if(preg_match('/[^a-z_]+/',$this->source)){
thrownewInvalidBreakpointSourceException(format_string("Invalid value '@source' for breakpoint source property. Breakpoint source property can only contain lowercase letters and underscores.",array('@source'=>$this->source)));
if(preg_match('/[^0-9a-z_]+/',$this->source)){
thrownewInvalidBreakpointSourceException(format_string("Invalid value '@source' for breakpoint source property. Breakpoint source property can only contain lowercase alphanumeric characters and underscores.",array('@source'=>$this->source)));
}
// Check for illegal characters in breakpoint names.