DeflatedPickle/Quiver

View on GitHub
core/src/main/kotlin/com/deflatedpickle/quiver/backend/api/exceptions/UnsupportedPackVersion.kt

Summary

Maintainability
A
0 mins
Test Coverage
/* Copyright (c) 2021 DeflatedPickle under the MIT license */

package com.deflatedpickle.quiver.backend.api.exceptions

class UnsupportedPackVersion(
    version: Int
) : Exception(
    "$version is not a supported pack version for this operation"
)