package questions;

/**
 * An abstract represenation of a code response
 */
public abstract class CodeResponse extends Response
{
   /**
    * Returns a string representation of
    * the response
    * @return the response
    */
   public abstract String toString();
}