Skip to content

Instantly share code, notes, and snippets.

@holograph
Created July 10, 2012 15:36
Show Gist options
  • Save holograph/3084142 to your computer and use it in GitHub Desktop.
Save holograph/3084142 to your computer and use it in GitHub Desktop.
IntelliJ IDEA Scala bug example: plugin does not propagate @throws annotation
package com.tomergabel.examples;
/**
* Created by tomer on 7/10/12.
*/
public class Derived implements Superclass {
public void doSomething() throws Exception {
}
}
package com.tomergabel.examples
/**
* Created by tomer on 7/10/12.
*/
trait Superclass {
@throws( classOf[ Exception ] ) def doSomething()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment