|
Scala Library
|
|
scala/throws.scala]
class
throws(clazz : java.lang.Class[Any])
extends StaticAnnotationAnnotation for specifying the exceptions thrown by a method. For example:
class Reader(fname: String) {
private val in =
new BufferedReader(new FileReader(fname))
@throws(classOf[IOException])
def read() = in.read()
}| Methods inherited from AnyRef | |
| getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
|
Scala Library
|
|