What is the output of the following code?
try:
if '1' != 1:
raise"some error"
else:
print("some error has not occurred")
except "someError":
print("someError has occured")
try:
if '1' != 1:
raise"some error"
else:
print("some error has not occurred")
except "someError":
print("someError has occured")