All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.teamwizardry.librarianlib.math.UnevenStackOperationException.kt Maven / Gradle / Ivy

There is a newer version: 5.0.0-alpha.10
Show newest version
package com.teamwizardry.librarianlib.math

import java.lang.RuntimeException

public class UnevenStackOperationException: RuntimeException {
    public constructor(): super()
    public constructor(message: String): super(message)
    public constructor(message: String, cause: Throwable): super(message, cause)
    public constructor(cause: Throwable): super(cause)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy