@@ -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.");
+ }
}