package com.newhive.scammerradar.exceptions;

public class ProfileAlreadyUsedException extends Exception {
   public ProfileAlreadyUsedException(String msg) {
      super(msg);
   }
}
