aboutsummaryrefslogtreecommitdiff
path: root/scala/ace/src/main/scala/com/github/jodersky/ace/PhysicalLayer.scala
blob: 61ebd88c7f05b28b3c5de9fc7578bbe21a200174 (plain) (blame)
1
2
3
4
5
package com.github.jodersky.ace

trait PhysicalLayer extends ReactiveLayer[Nothing, Seq[Int]] {
  protected def receive(nothing: Nothing) = throw new UnsupportedOperationException("A receive function cannot be called on the lowest layer.")
}