aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/javascript/reference/statements/try...catch/index.html
diff options
context:
space:
mode:
authorMaxim Postautov <54762420+mpstv@users.noreply.github.com>2021-07-15 19:33:00 +0300
committerGitHub <noreply@github.com>2021-07-15 19:33:00 +0300
commit4fbe5a0194ad7a21a5206d61845577f177b25217 (patch)
tree77a75c4b84e287ee208507c5e5c4f9b433fdb590 /files/ru/web/javascript/reference/statements/try...catch/index.html
parent187d4eb1e4784a944d28e22371ea08f39b538b27 (diff)
downloadtranslated-content-4fbe5a0194ad7a21a5206d61845577f177b25217.tar.gz
translated-content-4fbe5a0194ad7a21a5206d61845577f177b25217.tar.bz2
translated-content-4fbe5a0194ad7a21a5206d61845577f177b25217.zip
clean up mozilla wiki links (#1539)
Diffstat (limited to 'files/ru/web/javascript/reference/statements/try...catch/index.html')
-rw-r--r--files/ru/web/javascript/reference/statements/try...catch/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/web/javascript/reference/statements/try...catch/index.html b/files/ru/web/javascript/reference/statements/try...catch/index.html
index f61e2df440..47b1b24dd5 100644
--- a/files/ru/web/javascript/reference/statements/try...catch/index.html
+++ b/files/ru/web/javascript/reference/statements/try...catch/index.html
@@ -143,7 +143,7 @@ catch (e) {
<h3 id="Идентификатор_исключения">Идентификатор исключения</h3>
-<p>Когда в блоке <code>try</code> выбрасывается исключение, <code>exception_var</code> (т. е. <code>e</code> в конструкции <code>catch (e)</code>) содержит значение исключения. Его можно использовать, чтобы получить больше информации об выброшенном исключении. Идентификатор доступен только в <a href="https://wiki.developer.mozilla.org/docs/Glossary/Scope">области видимости</a> блока <code>catch</code>.</p>
+<p>Когда в блоке <code>try</code> выбрасывается исключение, <code>exception_var</code> (т. е. <code>e</code> в конструкции <code>catch (e)</code>) содержит значение исключения. Его можно использовать, чтобы получить больше информации об выброшенном исключении. Идентификатор доступен только в <a href="/docs/Glossary/Scope">области видимости</a> блока <code>catch</code>.</p>
<pre class="brush: js">try {
if (!firstValidation()) {