Essayez d'accepter à Julia

you may be coming from a lang like python. 
instead of try except it's try catch
ex.

try:
	pass
except:
	pass
    
in julia its

try
catch
end
Unusual Unicorn