Skip to content
Snippets Groups Projects
CoalescedDropletException.java 384 B
Newer Older
  • Learn to ignore specific revisions
  • package nloc;
    
    public class CoalescedDropletException extends Exception {
    
      private Droplet droplet;
    
      public CoalescedDropletException (Droplet droplet) {
    
        this.droplet= droplet;
    
      public CoalescedDropletException (Droplet droplet, String message) {
    
        this.droplet= droplet;
      }
    
      public Droplet getDroplet() {
        return droplet;