You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
+-- SystemExit # Raised by the sys.exit() function.
1315
1315
+-- KeyboardInterrupt # Raised when the user hits the interrupt key (ctrl-c).
1316
1316
+-- Exception # User-defined exceptions should be derived from this class.
@@ -1332,11 +1332,6 @@
1332
1332
+-- UnicodeError # Raised when encoding/decoding strings from/to bytes fails.
1333
1333
</code></pre></div>
1334
1334
1335
-
<div><h4id="usefulbuiltinexceptions">Useful built-in exceptions:</h4><pre><codeclass="python language-python hljs"><spanclass="hljs-keyword">raise</span> TypeError(<spanclass="hljs-string">'Argument is of wrong type!'</span>)
1336
-
<spanclass="hljs-keyword">raise</span> ValueError(<spanclass="hljs-string">'Argument is of right type but inappropriate value!'</span>)
1337
-
<spanclass="hljs-keyword">raise</span> RuntimeError(<spanclass="hljs-string">'None of above!'</span>)
1338
-
</code></pre></div>
1339
-
1340
1335
<div><h4id="collectionsandtheirexceptions">Collections and their exceptions:</h4><pre><codeclass="text language-text">+-----------+------------+------------+------------+
<div><h4id="usefulbuiltinexceptions">Useful built-in exceptions:</h4><pre><codeclass="python language-python hljs"><spanclass="hljs-keyword">raise</span> TypeError(<spanclass="hljs-string">'Argument is of wrong type!'</span>)
1346
+
<spanclass="hljs-keyword">raise</span> ValueError(<spanclass="hljs-string">'Argument is of right type but inappropriate value!'</span>)
1347
+
<spanclass="hljs-keyword">raise</span> RuntimeError(<spanclass="hljs-string">'None of above!'</span>)
0 commit comments