Skip to content

Commit

Permalink
Rna-transcription: throw exception in starter implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
FridaTveit committed Mar 5, 2017
1 parent 17302fd commit bc1ce4e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
public class RnaTranscription {
public String ofDna(String dnaString) { return null; }
public String ofDna(String dnaString) {
throw new UnsupportedOperationException("Method has not been implemented yet.");
}
}

0 comments on commit bc1ce4e

Please sign in to comment.