Squashed 'Programming/ProgLab6/' content from commit 3e98b8e

git-subtree-dir: Programming/ProgLab6
git-subtree-split: 3e98b8e205b1a576c861f90028b198d5052a79c3
This commit is contained in:
LeterZP
2026-05-17 15:29:12 +03:00
commit 1d57fb83a4
62 changed files with 2722 additions and 0 deletions
@@ -0,0 +1,16 @@
package exceptions
/**
* Исключение, показывающее, что программа завершила работу.
*
* Наследуется от класса [Exception].
*
* @property message Сообщение об ошибке типа [String].
*
* @constructor Стандартный конструктор класса [Exception].
*
* @since 1.0
*/
class ProgramExitException(): Exception() {
override val message: String = "Завершение работы."
}