Is there a Divide by zero exception on M0+ devices?
I know Cortex M3 and M4 devices have this.
Cortex-M0+ is ARMv6-M which does not include a divide instruction, so there will be no hardware exception for that. Since division would necessarily be a software operation, it would be for the software implementation for trap divide-by-zero. The behaviour will therefore be down to your compiler; for C and C++ at least it is undefined behaviour.