12,966
回編集
137行目: | 137行目: | ||
public: | public: | ||
QDivideByZeroException(const QString &message = " | QDivideByZeroException(const QString &message = "ゼロ除算が発生") : m_message(message) | ||
{} | {} | ||
165行目: | 165行目: | ||
{ | { | ||
if (denominator == 0.0f) { | if (denominator == 0.0f) { | ||
throw QDivideByZeroException(" | throw QDivideByZeroException("ゼロで除算しようとしました"); | ||
} | } | ||