Exception bookNotExists = new Exception("图书不存在!");
bookNotExists.initCause(e);
throw bookNotExists;
bookNotExists.initCause(e); 这个有什么作用
自定义异常。