⁠
kyle wood: Update copyright to 2023
- /*
- * Minecraft Dev for IntelliJ
- *
- * https://minecraftdev.org
- *
- * Copyright (c) 2022 minecraft-dev
- *
- * MIT License
- */
- package com.demonwav.mcdev.nbt
- open class MalformedNbtFileException : Exception {
- constructor(message: String) : super(message)
- constructor(message: String, cause: Throwable) : super(message, cause)
- }
- class NbtFileParseTimeoutException(message: String) : MalformedNbtFileException(message)
- /*
- * Minecraft Dev for IntelliJ
- *
- * https://minecraftdev.org
- *
- * Copyright (c) 2023 minecraft-dev
- *
- * MIT License
- */
- package com.demonwav.mcdev.nbt
- open class MalformedNbtFileException : Exception {
- constructor(message: String) : super(message)
- constructor(message: String, cause: Throwable) : super(message, cause)
- }
- class NbtFileParseTimeoutException(message: String) : MalformedNbtFileException(message)