Flip the question. Why would it not be const?
If it was "char *what() const", you could modify the internal char array that what() is returning a pointer to. It'd be astoundingly stupid for exception() to allow arbitrary code to manipulate its internal buffers in that way, so what() returns a const char *, instead of a char *.
And if it was "const char *what()", without the const qualifier, it would indicate that calling what() would modify the internal state of the exception. Which it doesn't, and which you'd not expect it to do.
So we have what we have, "const char *what() const". A const function returning a pointer to a const array. And the result is that you can call it on a const reference. Which exceptions generally are.
After all, you don't usually change exceptions, you construct them, throw them, and then have the handling code manipulate them without changing them. So their member functions should be const.