com.jetbrains.plugin.structure.edu.problems.InvalidVersionError.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-edu Show documentation
Show all versions of structure-edu Show documentation
Library for parsing JetBrains Edu plugins. Can be used to verify that plugin complies with JetBrains Marketplace requirements.
package com.jetbrains.plugin.structure.edu.problems
import com.jetbrains.plugin.structure.base.plugin.PluginProblem
class InvalidVersionError(version: String) : PluginProblem() {
override val level = Level.ERROR
override val message = "Broken Edu plugin version $version "
}