mysql.exceptions.client.Server_Lost:
If connect_timeout > 0 and it took longer than connect_timeout seconds
to connect to the server or if the server died while executing the
init-command.
mysql.exceptions.server.Slave_Ignored_Ssl_Params:
SSL parameters in CHANGE MASTER are ignored because this MySQL slave was
compiled without SSL support; they can be used later if MySQL slave with
SSL is started
mysql.exceptions.server.Missing_Skip_Slave:
It is recommended to use --skip-slave-start when doing step-by-step
replication with START SLAVE UNTIL; otherwise, you will get problems if you
get an unexpected slave's mysqld restart
mysql.exceptions.server.Trans_Cache_Full:
Multi-statement transaction required more than 'max_binlog_cache_size'
bytes of storage; increase this mysqld variable and try again
mysql.exceptions.server.Failed_Routine_Break_Binlog:
A routine failed and has neither NO SQL nor READS SQL DATA in its
declaration and binary logging is enabled; if non-transactional tables were
updated, the binary log will miss their changes
mysql.exceptions.server.Syntax_Error:
You have an error in your SQL syntax; check the manual that corresponds
to your MySQL server version for the right syntax to use
mysql.exceptions.server.View_Invalid:
View '%s.%s' references invalid table(s) or column(s) or function(s) or
definer/invoker of view lack rights to use them
mysql.exceptions.server.Too_Big_Select:
The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE
and use SET SQL_BIG_SELECTS=1 or SET SQL_MAX_JOIN_SIZE=# if the SELECT is
okay
mysql.exceptions.server.Out_Of_Resources:
Out of memory; check if mysqld or some other process uses all available
memory; if not, you may have to use 'ulimit' to allow mysqld to use more
memory or you can add more swap space
mysql.exceptions.client.Version_Error:
A protocol mismatch resulted from attempting to connect to a server with
a client library that uses a different protocol version.
mysql.exceptions.server.Wrong_Sub_Key:
Incorrect sub part key; the used key part isn't a string, the used
length is longer than the key part, or the storage engine doesn't support
unique sub keys
mysql.exceptions.server.Cant_Create_Thread:
Can't create a new thread (errno %d); if you are not out of available
memory, you can consult the manual for a possible OS-dependent bug
mysql.exceptions.server.Binlog_Unsafe_Routine:
This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in
its declaration and binary logging is enabled (you might want to use the
less safe log_bin_trust_function_creators variable)