aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/DotClass.scala
blob: f74a4ba818733270a3c42cc76a354c8f340e9e3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package dotty.tools.dotc.core

/** Adds standard functionality to a class.
 *  For now: Just the `unsupported` method.
 */
class DotClass {

  /** Throws an `UnsupportedOperationException` with the given method name. */
  def unsupported(methodName: String): Nothing =
    throw new UnsupportedOperationException(s"$getClass.$methodName")

}